-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
34 lines (28 loc) · 840 Bytes
/
Copy pathsetup.py
File metadata and controls
34 lines (28 loc) · 840 Bytes
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
from setuptools import setup
setup(
name='github-manager',
version='0.4.3',
description='Gitman - Simple CLI Github Repository Manager',
url='https://github.com/Nelthorim/gitman',
author='Eduardo Coello Rodriguez',
author_email='ecoerod@gmail.com',
license="MIT",
keywords='git github repository manager',
packages=['gitman', 'gitman.locales'],
install_requires=[
'requests>=.2.12',
'Click>=6.0'
],
entry_points={
'console_scripts': [
'gitman = gitman.gitman:main'
]
},
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
]
)