-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
58 lines (56 loc) · 1.54 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
47
48
49
50
51
52
53
54
55
56
57
58
from setuptools import setup
from civicpy.__version__ import __version__, __authors__, __author_email__, __description__, __url__
from pathlib import Path
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()
setup(
name='civicpy',
version=__version__,
packages=['civicpy'],
url=__url__,
license='MIT',
author=', '.join(__authors__),
author_email=__author_email__,
description=__description__,
long_description=long_description,
long_description_content_type='text/markdown',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Science/Research',
'Intended Audience :: Developers',
'Topic :: Scientific/Engineering :: Bio-Informatics',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3'
],
install_requires=[
'requests',
'obonet',
'networkx',
'pandas',
'Click',
'vcfpy',
'pysam',
'backports-datetime-fromisoformat',
'deprecation',
],
extras_require={
'test': [
'pytest==6.2.5',
'pytest-cov==5.0.0',
'attrs==22.1.0',
'coveralls',
'coverage<7.4.4',
],
'docs': [
'sphinx',
'sphinxjp.themes.basicstrap',
'sphinxcontrib.programoutput'
]
},
python_requires='>=3.5',
entry_points={
'console_scripts': [
'civicpy=civicpy.cli:cli'
]
},
)