-
Notifications
You must be signed in to change notification settings - Fork 11
/
setup.py
46 lines (41 loc) · 1.11 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
import io
from setuptools import setup, find_packages
def readme():
with open('README.md') as f:
return f.read()
setup(name='pypgatk',
version='0.0.25',
description='Python tools for proteogenomics',
url='http://github.com/bigbio/py-pgatk',
long_description=readme(),
long_description_content_type='text/markdown',
author='PgAtk Team',
author_email='ypriverol@gmail.com',
license='LICENSE.txt',
include_package_data=True,
install_requires=[
'biopython',
'Click',
'gffutils',
'numpy',
'pandas',
'PyYAML',
'requests',
'simplejson',
'ratelimit',
'pyteomics',
'pathos',
'pybedtools',
'pyopenms',
'matplotlib',
'tqdm',
'pyahocorasick'
],
python_requires=">=3.6",
scripts=['pypgatk/pypgatk_cli.py'],
packages=find_packages(),
entry_points={
'console_scripts': [
'pypgatk = pypgatk.pypgatk_cli:main'
]},
package_data={'pypgatk': ['config/*.yaml', 'config/*.json']}, zip_safe=False)