-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
35 lines (34 loc) · 1001 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
28
29
30
31
32
33
34
35
from setuptools import setup
setup(
name="pgx-variant-tools",
version="0.0.5",
description="Tools for working with variants.",
author="Guy Allard",
author_email="[email protected]",
url="https://github.com/LUMC/pgx-variant-tools",
platforms=['any'],
packages=["variant_tools"],
install_requires=[
'numpy==1.13.1',
'biopython==1.69',
'edlib==1.1.2.post2',
'pyinterval==1.2.0',
'suds-jurko==0.6',
],
tests_requires=['pytest'],
entry_points={
"console_scripts": [
"vcf2sequence = variant_tools.cli:vcf2sequence"
]
},
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Scientific/Engineering',
'License :: OSI Approved :: MIT License',
],
keywords='bioinformatics'
)