forked from microbiomedata/nmdc-runtime
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
35 lines (32 loc) · 1.14 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
"""blah."""
from setuptools import find_packages, setup # type: ignore
with open("README.md") as f:
long_description = f.read()
setup(
name="nmdc_runtime",
url="https://github.com/microbiomedata/nmdc-runtime",
packages=find_packages(
include=["nmdc_runtime*", "components*"],
exclude=["tests"],
),
use_scm_version=True,
setup_requires=["setuptools_scm"],
author="Donny Winston",
author_email="[email protected]",
description="A runtime system for NMDC data management and orchestration",
long_description=long_description,
long_description_content_type="text/markdown",
classifiers=[
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
],
python_requires=">=3.10",
entry_points={
"console_scripts": [
"nmdcdb-mongoexport = nmdc_runtime.site.backup.nmdcdb_mongoexport:main",
"nmdcdb-mongodump = nmdc_runtime.site.backup.nmdcdb_mongodump:main",
"nmdcdb-mongoimport = nmdc_runtime.site.backup.nmdcdb_mongoimport:main",
]
},
)