-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
40 lines (35 loc) · 1.35 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
from setuptools import setup
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 :: Python :: 3.5",
"Topic :: Scientific/Engineering :: Bio-Informatics",
]
pks = ['saber']
SETUP_METADATA = \
{
"name": "SABerML",
"version": "0.0.1",
"description": "Software for recruiting metagenomic reads using single-cell amplified genome data.",
"long_description": LONG_DESCRIPTION,
"long_description_content_type": "text/markdown",
"author": "Ryan McLaughlin, Connor Morgan-Lang",
"author_email": "[email protected]",
"url": "https://github.com/hallamlab/SABer",
"license": "GPL-3.0",
"include_package_data": True,
"package_dir": {'': 'src'}, # Necessary for proper importing
"packages": pks,
"package_data": {
'saber': ['configs/*']},
"entry_points": {'console_scripts': ['saber = saber.__main__:main']},
"classifiers": CLASSIFIERS,
"install_requires": ['numpy', 'pytest']
}
setup(**SETUP_METADATA)