-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.py
27 lines (22 loc) · 862 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
from setuptools import setup
long_description = ''
with open('docs/bioconverters.md', 'r') as fh:
long_description = fh.read()
DEV_REQS = ['black', 'flake8', 'isort', 'mypy']
TEST_REQS = ['biopython', 'snakemake', 'ftputil', 'requests', 'pytest', 'pytest-cov', 'hypothesis']
setup(
name='bioconverters',
version='1.0.3',
packages=['bioconverters'],
package_dir={'': 'src'},
description='Convert between NCBI pubmed/PMC and BIOC formats',
long_description=long_description,
long_description_content_type='text/markdown',
install_requires=['bioc>=2.0', 'typing_extensions'],
extras_require={'dev': DEV_REQS + TEST_REQS, 'test': TEST_REQS},
python_requires='>=3.6',
author='Jake Lever',
author_email='jake.lever@glasgow.ac.uk',
maintainer='Jake Lever',
maintainer_email='jake.lever@glasgow.ac.uk',
)