-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
49 lines (45 loc) · 1.78 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
from setuptools import Extension
from setuptools import setup, find_packages
with open("README.md", "r") as readme:
LONG_DESCRIPTION = readme.read()
CLASSIFIERS = [
"Environment :: Console",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Natural Language :: English",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS :: MacOS X",
"Programming Language :: C++",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Development Status :: 5 - Production/Stable"
]
SETUP_METADATA = \
{
"name": "treesapp",
"version": "0.11.4",
"description": "TreeSAPP is a functional and taxonomic annotation tool for genomes and metagenomes.",
"long_description": LONG_DESCRIPTION,
"long_description_content_type": "text/markdown",
"author": "Connor Morgan-Lang",
"author_email": "c.morganlang@gmail.com",
"url": "https://github.com/hallamlab/TreeSAPP",
"license": "GPL-3.0",
"packages": find_packages(),
"include_package_data": True,
"entry_points": {'console_scripts': ['treesapp = treesapp.__main__:main']},
"classifiers": CLASSIFIERS,
"ext_modules": [Extension("_tree_parser",
sources=["treesapp/extensions/tree_parsermodule.cpp"],
language="c++")
],
"install_requires": open("requirements.txt").read().splitlines(),
"setup_requires": [
"setuptools>=50.0.0"
],
"extras_require": {
'test': ['pytest', 'pytest-cov'],
}
}
setup(**SETUP_METADATA)