-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
26 lines (21 loc) · 870 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
from setuptools import setup
from mergic import __version__
description = 'workflow support for reproducible deduplication and merging'
with open('README.rst') as file:
long_description = file.read()
url = 'https://github.com/ajschumacher/mergic'
setup(name='mergic',
packages=['mergic'],
description=description,
long_description=long_description,
license='MIT',
author='Aaron Schumacher',
author_email='[email protected]',
url=url,
download_url=url + '/tarball/' + __version__,
version=__version__,
entry_points={'console_scripts': ['mergic = mergic:script']},
classifiers=["Programming Language :: Python",
"Programming Language :: Python :: 2.7",
"License :: OSI Approved :: MIT License",
"Development Status :: 2 - Pre-Alpha"])