forked from Molmed/clarity-ext
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
46 lines (44 loc) · 1.6 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
43
44
45
46
"""
Main entry point for Clarity extensions in the SNP&SEQ installation
"""
from setuptools import find_packages, setup
from clarity_ext import VERSION
# Add that to the dev reqs file for now, since it's not needed when running
dependencies = ['click', 'genologics', 'requests-cache', 'pyyaml', 'nose', 'PyPDF2',
'lxml', 'coverage', 'pep8radius', 'mock', 'jinja2', 'python-levenshtein',
'fuzzywuzzy']
setup(
name='clarity-ext',
version=VERSION,
url='https://github.com/withrocks/clarity-ext',
author='withrocks',
author_email='withrocks',
description='Main entry point for Clarity extensions in the SNP&SEQ installation',
long_description=__doc__,
packages=find_packages(exclude=['tests']),
package_data={'': ['*.j2', '*.txt', 'README']},
include_package_data=True,
zip_safe=False,
platforms='any',
install_requires=dependencies,
entry_points={
'console_scripts': [
'clarity-ext = clarity_ext.cli:main',
'clarity-data = clarity_ext.data_cli:main',
],
},
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: POSIX',
'Operating System :: MacOS',
'Operating System :: Unix',
'Operating System :: Windows',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Topic :: Software Development :: Libraries :: Python Modules',
]
)