-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
52 lines (48 loc) · 1.39 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
"""Script for testing and packaging this library."""
import codecs
import os
from textwrap import dedent
from setuptools import setup
here = os.path.abspath(os.path.dirname(__file__))
with codecs.open(os.path.join(here, "README.md"), encoding="utf-8") as f:
long_description = f.read()
TEST_REQUIRES = [
"flake8-black",
"flake8-docstrings",
"flake8-isort",
"pytest-cov>=2.6.1",
"pytest-ruff",
"pytest-mypy",
"pytest-pudb",
"pytest>=4.1",
]
setup(
author="Oliver Bristow",
author_email="github+pypi@oliverbristow.co.uk",
name="modello",
use_scm_version=True,
install_requires=["sympy"],
long_description=long_description,
long_description_content_type="text/markdown",
description="sympy expressions in models",
setup_requires=["setuptools_scm", "wheel", "pytest-runner"],
tests_require=TEST_REQUIRES,
extras_require={"test": TEST_REQUIRES},
py_modules=["modello"],
python_requires=">=3.3",
license="MIT",
classifiers=dedent(
"""
Development Status :: 4 - Beta
Intended Audience :: Developers
Intended Audience :: Science/Research
License :: OSI Approved :: MIT License
Operating System :: OS Independent
Programming Language :: Python :: 3
"""
)
.strip()
.split("\n"),
keywords="symbolic modeling",
url="https://github.com/Code0x58/modello/",
)