forked from NBISweden/IgDiscover-legacy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
48 lines (44 loc) · 1.26 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
import sys
from setuptools import setup
import versioneer
if sys.version_info < (3, 4):
sys.stdout.write("At least Python 3.4 is required.\n")
sys.exit(1)
with open('README.rst', encoding='utf-8') as f:
long_description = f.read()
setup(
name = 'igdiscover',
version = versioneer.get_version(),
cmdclass = versioneer.get_cmdclass(),
author = 'Marcel Martin',
author_email = '[email protected]',
url = 'https://igdiscover.se/',
description = 'Analyze antibody repertoires and discover new V genes',
long_description = long_description,
license = 'MIT',
entry_points = {'console_scripts': ['igdiscover = igdiscover.__main__:main']},
packages = ['igdiscover'],
package_data = {'igdiscover': ['igdiscover.yaml', 'Snakefile', 'empty.aux']},
install_requires = [
'sqt>=0.8.0',
'pandas>=0.16.2',
'numpy',
'matplotlib>=1.5.0',
'seaborn==0.7.1',
'snakemake>=3.9.0',
'cutadapt',
'seaborn>=0.6.0',
'scipy>=0.16.1',
'xopen>=0.1.1',
'ruamel.yaml',
],
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Bio-Informatics"
]
)