-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
30 lines (27 loc) · 1.24 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
#!/usr/bin/env python
'''
setup.py file for Scavager
'''
from setuptools import setup
version = open('VERSION').readline().strip()
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name = 'Scavager',
version = version,
description = '''Proteomics post-search algorithm''',
long_description = long_description,
long_description_content_type = "text/markdown",
author = 'Mark Ivanov & Lev Levitsky & Julia Bubis',
author_email = '[email protected]',
url = 'https://github.com/markmipt/scavager',
packages = ['scavager', ],
install_requires = [line.strip() for line in open('requirements.txt')],
classifiers = ['Intended Audience :: Science/Research',
'Programming Language :: Python :: 3',
'Topic :: Scientific/Engineering :: Bio-Informatics'],
license = 'License :: OSI Approved :: Apache Software License',
entry_points = {'console_scripts': ['scavager = scavager.search:run',
'scav2diffacto = scavager.scav2diffacto:run',
'scav2nsaf = scavager.scav2nsaf:run']}
)