-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
42 lines (39 loc) · 1.24 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
40
41
42
"""
Common interfacte to git and hg
"""
from setuptools import find_packages, setup
dependencies = ['click']
short_description = 'Simplified common interface to git and hg'
with open('README.md', 'r') as fh:
long_description = fh.read()
setup(
name='wib',
version='0.2.10',
url='https://github.com/chengsoonong/wib',
license='GPLv3',
author='Cheng Soon Ong',
author_email='[email protected]',
description=short_description,
long_description=long_description,
long_description_content_type='text/markdown',
packages=find_packages(exclude=['tests']),
include_package_data=True,
zip_safe=False,
platforms='any',
install_requires=['click'],
entry_points='''
[console_scripts]
wib=wib.cli:main
''',
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Topic :: Software Development :: Libraries :: Python Modules',
]
)