-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
50 lines (45 loc) · 1.83 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
#!/usr/bin/env python
try:
from setuptools import setup
have_setuptools = True
except ImportError:
from distutils.core import setup
have_setuptools = False
import glob
with open('README') as f:
long_description = f.read()
with open('LICENSE.txt') as f:
license = f.read()
setup(name='scrimer',
version='1.1',
description='Primer designing pipeline',
author='Libor Morkovsky',
author_email='[email protected]',
url='https://github.com/libor-m/scrimer',
py_modules=[f.replace('.py', '') for f in glob.glob('scrimer/*.py')],
scripts=glob.glob('scripts/*.py'),
# http://stackoverflow.com/questions/6947988/when-to-use-pip-requirements-file-versus-install-requires-in-setup-py
#install_requires=['PyVCF (>=0.6)', 'pybedtools (>=0.6)', 'pysam (>=0.7)'],
install_requires=['PyVCF', 'pybedtools', 'pysam'],
# requires=['PyVCF (>=0.6)', 'pybedtools (>=0.6)', 'pysam (>=0.7)'],
data_files=[('demo', glob.glob('demo/*'))],
long_description=long_description,
# https://pypi.python.org/pypi?%3Aaction=list_classifiers
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)',
'Natural Language :: English',
'Operating System :: POSIX',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Topic :: Scientific/Engineering :: Bio-Informatics',
],
license=license,
entry_points="""
[vcf.filters]
contrast-samples = scrimer.pyvcf_filters:DistinguishingVariants
""",
)