-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
37 lines (32 loc) · 830 Bytes
/
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
from setuptools import setup, find_packages
def readme():
try:
with open('README.md') as f:
return f.read()
except:
pass
setup(
name ='NLT',
version ='1.0',
description = 'Upload your projects to Github without leaving the terminal',
author = 'Dibya Ranjan Jena',
author_email = '[email protected]',
long_description=readme(),
long_description_content_type='text/markdown',
packages = find_packages(),
include_package_data = True,
install_requires=[
'requests',
'click',
'colorama',
'windows-curses;platform_system=="Windows"',
'pick',
'cryptography',
'prettytable',
'gitpython'
],
entry_points='''
[console_scripts]
nlt=nlt_gb:cli
''',
)