-
Notifications
You must be signed in to change notification settings - Fork 8
/
setup.py
50 lines (47 loc) · 1.32 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
import setuptools
with open("README.md", "r") as f:
long_description = f.read()
with open("requirements.txt", "r") as r:
require_list = r.read().strip().split("\n")
setuptools.setup(
name="NCBImeta",
version="0.8.3",
description=(
"Efficient and comprehensive metadata acquisition "
"from the NCBI databases (includes SRA)."
),
python_requires=">=3.7,<3.10",
license="MIT",
long_description=long_description,
long_description_content_type="text/markdown",
author="Katherine Eaton",
author_email="[email protected]",
url="https://ktmeaton.github.io/NCBImeta/",
# packages=setuptools.find_packages(),
packages=["ncbimeta"],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
],
install_requires=require_list, # external packages as dependencies
extras_require={
"dev": [
"coverage",
"codecov",
"pytest",
"pytest-cov",
"check-manifest",
"twine",
"pre-commit",
"flake8",
"flake8-bugbear",
"black",
]
},
scripts=[
"ncbimeta/NCBImeta",
"ncbimeta/NCBImetaExport",
"ncbimeta/NCBImetaJoin",
"ncbimeta/NCBImetaAnnotate",
],
)