-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
36 lines (34 loc) · 1.22 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
import setuptools
import re
with open("README.md") as fh:
long_description = fh.read()
md_links_re = re.compile(r"\[(.+)\]\(/([^\)]*)\)")
long_description = md_links_re.sub(r"[\1](https://github.com/pstelzig/MoPyRegtest/tree/master/\2)", long_description)
setuptools.setup(
name="MoPyRegtest",
version="0.5.1",
author="Philipp Emanuel Stelzig",
description="A Python enabled simple regression testing framework for Modelica models",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/pstelzig/mopyregtest",
packages=setuptools.find_packages(),
package_data={"mopyregtest": ["templates/omc/model_import.mos.template",
"templates/omc/model_simulate.mos.template"]},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: Microsoft :: Windows :: Windows 10",
"Operating System :: POSIX :: Linux"
],
python_requires='>=3.8',
install_requires=[
"numpy",
"pandas"
],
entry_points={
'console_scripts': [
'mopyregtest = mopyregtest.cli:main',
]
}
)