-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
80 lines (62 loc) · 2.18 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
"""
TCUP setup.
Online documentation:
https://tcup.readthedocs.org
Online repository:
https://bitbucket.org/chalmersmathbioinformatics/tcup
"""
from setuptools import setup, find_packages
from codecs import open
from os import path
here = path.abspath(path.dirname(__file__))
# Read long description from README file
with open(path.join(here, "README.rst"), encoding="utf-8") as f:
long_description = f.read()
setup(
name="tcup",
# This project aims to follow semantic versioning (www.semver.org)
version="1.1.0",
description="TCUP: Typing and Characterization using Proteomics",
long_description=long_description,
url="https://bitbucket.org/chalmersmathbioinformatics/tcup",
author="Fredrik Boulund",
author_email="[email protected]",
license="BSD",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Natural Language :: English",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3.5",
"Topic :: Scientific/Engineering :: Bio-Informatics",
],
keywords="microbial typing characterization proteomics proteotyping antibiotic resistance",
packages=find_packages(exclude=["docs", "tests"]),
package_data={"tcup": ["tcup/species_normalization.tab"]},
install_requires=[
"ete3",
"xlsxwriter",
"requests",
"six",
"scipy",
"numpy",
],
extras_require={
"dev": ["twine", "wheel"],
"docs": ["sphinx", "sphinx-autobuild", "sphinx-rtd-theme"]
},
entry_points={
"console_scripts": [
"annotation_db = tcup.annotation_db:main",
"antibiotic_resistance = tcup.antibiotic_resistance:main",
"construct_resfinder_db = tcup.construct_resfinder_db:main",
"taxonomic_composition = tcup.taxonomic_composition:main",
"taxref_db = tcup.taxref_db:main",
"run_tcup = tcup.run_tcup:main"
]
},
include_package_data=True,
)