-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
28 lines (23 loc) · 903 Bytes
/
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
import setuptools
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
with open("requirements.txt") as fh:
install_requires = fh.read().strip().split("\n")
with open("extra_requires.txt") as fh:
extra_requires = fh.read().strip().split("\n")
with open("mobspy/_version.py") as fh:
version = fh.readlines()[-1].split()[-1].strip("\"'")
setuptools.setup(
name="mobspy",
# use_scm_version=True,
setup_requires=['setuptools_scm'],
packages=setuptools.find_packages(include=["mobspy", "mobspy.*"]),
version=version,
description="A Query-Based Language for Chemical Reaction Networks",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/ROBACON/mobspy",
python_requires=">=3.6",
install_requires=install_requires,
extras_require={'test': extra_requires}
)