-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
74 lines (71 loc) · 2.5 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
# -------------------------------------------------------------------------------------------------
# Copyright (c) 2018, DHS.
#
# This file is part of MicroHapulator (https://github.com/bioforensics/microhapulator) and is
# licensed under the BSD license: see LICENSE.txt.
#
# This software was prepared for the Department of Homeland Security (DHS) by the Battelle National
# Biodefense Institute, LLC (BNBI) as part of contract HSHQDC-15-C-00064 to manage and operate the
# National Biodefense Analysis and Countermeasures Center (NBACC), a Federally Funded Research and
# Development Center.
# -------------------------------------------------------------------------------------------------
from setuptools import setup
import versioneer
with open("README.md", "r") as infile:
longdesc = infile.read()
setup(
name="microhapulator",
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
description="Software package for simulating and analyzing microhaplotype sequence data",
long_description=longdesc,
long_description_content_type="text/markdown",
url="https://github.com/bioforensics/microhapulator",
author="Daniel Standage",
author_email="[email protected]",
packages=[
"microhapulator",
"microhapulator.cli",
"microhapulator.pipe",
"microhapulator.tests",
],
package_data={
"microhapulator": [
"microhapulator/Snakefile",
"microhapulator/data/*",
"microhapulator/tests/data/*",
"microhapulator/tests/data/*/*",
]
},
include_package_data=True,
install_requires=[
"biopython",
"happer>=0.1",
"insilicoseq>=1.5.4,<2.0",
"jsonschema>=4.0",
"matplotlib>=3.0",
"microhapdb>=0.10.1",
"multiqc>=1.14",
"nbformat>=5.0,<5.6",
"numpy>=1.19",
"pandas>1.0",
"pulp==2.3.1",
"scipy>=1.7",
"seaborn>=0.13.2",
"snakemake>=7.15.2,<8.0",
"termgraph>=0.5",
"tqdm>=4.0",
],
entry_points={"console_scripts": ["mhpl8r = microhapulator.cli:main"]},
classifiers=[
"Environment :: Console",
"Framework :: IPython",
"Framework :: Jupyter",
"Intended Audience :: Science/Research",
"Intended Audience :: Legal Industry",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Bio-Informatics",
],
zip_safe=True,
)