forked from sdu-cfei/modest-py
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
35 lines (34 loc) · 967 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
29
30
31
32
33
34
35
from setuptools import setup
setup(
name="modestpy",
version="0.1.1",
description="FMI-compliant model identification package",
url="https://github.com/sdu-cfei/modest-py",
keywords="fmi fmu optimization model identification estimation",
author="Krzysztof Arendt, Center for Energy Informatics SDU",
author_email="[email protected], [email protected]",
license="BSD",
platforms=["Windows", "Linux"],
packages=[
"modestpy",
"modestpy.estim",
"modestpy.estim.ga_parallel",
"modestpy.estim.ga",
"modestpy.estim.ps",
"modestpy.estim.scipy",
"modestpy.fmi",
"modestpy.utilities",
"modestpy.test",
],
include_package_data=True,
install_requires=[
"fmpy",
"scipy",
"pandas",
"matplotlib",
"numpy",
"pyDOE",
"modestga",
],
classifiers=["Programming Language :: Python :: 3"],
)