-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
48 lines (44 loc) · 1.77 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
from setuptools import setup, find_packages
# read the contents of your README file
from os import path
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, "README.md"), encoding="utf-8") as f:
long_description = f.read()
CLASSIFIERS = [
"Environment :: Console",
"Environment :: MacOS X",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Natural Language :: English",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS :: MacOS X",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Topic :: Scientific/Engineering :: Bio-Informatics",
]
setup(
name="genome-grist",
description="tools to support genome and metagenome analysis",
url="https://github.com/dib-lab/genome-grist",
author="C. Titus Brown, Luiz Irber, Tessa Pierce, Taylor Reiter",
license="BSD 3-clause",
packages=find_packages(),
classifiers=CLASSIFIERS,
entry_points={"console_scripts": ["genome-grist = genome_grist.__main__:main"]},
include_package_data=True,
package_data={"genome_grist": ["Snakefile", "*.yml", "*.ipynb"]},
setup_requires=[
"setuptools>=38.6.0",
"setuptools_scm",
"setuptools_scm_git_archive",
"pytest-runner",
],
tests_require=["pytest", "pytest-dependency==0.5.1"],
use_scm_version={"write_to": "genome_grist/version.py"},
install_requires=["snakemake==7.25.0", "click>=7,<9", "lxml==4.9.3",
"pandas>1,<3"],
long_description=long_description,
long_description_content_type="text/markdown",
)