forked from OrkoHunter/keep
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
39 lines (34 loc) · 1.03 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
#! /usr/bin/env python
# -*- coding: utf-8 -*-
import codecs
import os
import sys
from setuptools import setup
from keep import about
here = os.path.abspath(os.path.dirname(__file__))
with codecs.open(os.path.join(here, 'README.rst'), encoding='utf-8') as f:
long_description = '\n' + f.read()
if __name__ == "__main__":
setup(
name=about.__name__,
packages=['keep', 'keep.commands'],
version=about.__version__,
description='Personal shell command keeper',
long_description=long_description,
author='Himanshu Mishra',
author_email='himanshu.mishra.kgp@gmail.com',
url="https://github.com/orkohunter/keep",
download_url="https://github.com/orkohunter/keep/archive/master.zip",
include_package_data=True,
install_requires=[
'click',
'requests',
'terminaltables',
'PyGithub'
],
entry_points={
'console_scripts': [
'keep=keep.cli:cli'
],
},
)