-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
53 lines (48 loc) · 1.83 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
53
"""Setup.py script for the aixcalibuha-framework"""
import setuptools
# read the contents of your README file
from pathlib import Path
readme_path = Path(__file__).parent.joinpath("README.md")
long_description = readme_path.read_text()
INSTALL_REQUIRES = [
'numpy>=1.19.5',
'matplotlib>=3.3.4',
'pandas>=1.3.5',
'SALib>=1.4.6',
'ebcpy>=0.3.14',
'toml>=0.10.2'
]
__version__ = "1.0.1"
setuptools.setup(
name='aixcalibuha',
version=__version__,
description='Framework used for sensitivity-analysis'
'and calibration for models of HVAC '
'components.',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/RWTH-EBC/AixCaliBuHA',
download_url=f'https://github.com/RWTH-EBC/AixCaliBuHA/archive/refs/tags/{__version__}.tar.gz',
license='MIT',
author='RWTH Aachen University, E.ON Energy Research Center, Institute '
'of Energy Efficient Buildings and Indoor Climate',
author_email='fabian.wuellhorst@eonerc.rwth-aachen.de',
# Specify the Python versions you support here. In particular, ensure
# that you indicate whether you support Python 2, Python 3 or both.
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: MIT License',
'Topic :: Scientific/Engineering',
'Intended Audience :: Science/Research',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11'
],
keywords=[
'calibration', 'building', 'energy',
'black-box optimization', 'sensitivity_analysis'
],
packages=setuptools.find_packages(exclude=['tests', 'tests.*', 'img']),
install_requires=INSTALL_REQUIRES
)