-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
40 lines (38 loc) · 957 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
38
39
40
from setuptools import setup
requirements = [
'click',
'certifi',
'urllib3',
'chardet',
'idna',
'requests',
'tabulate',
'timeago'
]
setup(
name='gitissues',
version='0.0.3',
description='Manage all your git issues at one place',
author='Roopesh V S',
author_email='txtmeroopesh@gmail.com',
url='https://github.com/roopeshvs/git-issues',
packages=[
'gitissues',
],
install_requires=requirements,
license="BSD",
zip_safe=False,
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
],
entry_points='''
[console_scripts]
gitissues=gitissues.cli:cli
'''
)