-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
39 lines (35 loc) · 1023 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
#!/usr/bin/env python
import os
from setuptools import setup
def readme():
with open('README.rst') as f:
return f.read()
setup(
name='gitorg',
packages=['gitorg'],
version='0.8.0',
description='Use git for organizations!',
long_description=readme(),
author='Mario Corchero',
author_email='[email protected]',
url='https://github.com/Mariocj89/gitorg',
keywords=['github', 'sync', 'workspace'],
license='MIT',
test_suite='nose.collector',
use_2to3=True,
install_requires=['PyGithub', 'PyYAML'],
entry_points={
'console_scripts': [
'gitorg=gitorg.__main__:main'
]
},
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.6',
'Topic :: Software Development :: Version Control',
],
)