-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·54 lines (44 loc) · 1.62 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
from setuptools import setup
import os
# PyDAIR version
with open(os.path.join(os.path.dirname(__file__), 'PyDAIR', '__init__.py')) as fh:
for buf in fh:
if buf.startswith('__version__'):
exec(buf)
break
setup(
name = 'PyDAIR',
version = __version__,
description = 'Python library for diversity analysis of immune repertoire',
classifiers = [
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: Science/Research',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Topic :: Scientific/Engineering :: Bio-Informatics',
'License :: OSI Approved :: GNU General Public License v2 (GPLv2)',
],
keywords = 'blast, bioinformatics',
author = 'pydair',
author_email = '[email protected]',
url = 'https://aabbdd.jp/src/pydair',
license = 'GNU',
packages = ['PyDAIR',
'PyDAIR.app',
'PyDAIR.io',
'PyDAIR.seq',
'PyDAIR.sim',
'PyDAIR.stats',
'PyDAIR.utils'],
package_dir = {'PyDAIR': 'PyDAIR'},
package_data = {'PyDAIR': ['templates/*html']},
scripts = ['PyDAIR/bin/pydair'],
test_suite = 'test',
include_package_data = True,
zip_safe = True,
long_description = open('README.rst', 'r').read(),
install_requires = ['matplotlib>=1.4', 'pandas', 'biopython', 'jinja2'],
)