-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
43 lines (36 loc) · 1.2 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
import setuptools
NAME = "rheia"
DESCRIPTION = 'Robust design optimization of renewable Hydrogen and dErIved energy cArrier systems'
URL = 'https://github.com/rheia-framework/RHEIA'
EMAIL = '[email protected]'
AUTHOR = 'Diederik Coppitters, Panagiotis Tsirikoglou, Ward De Paepe, Konstantinos Kyprianidis, Anestis Kalfas, Francesco Contino'
VERSION = '1.1.12'
with open("README.md", "r", encoding="utf-8") as fh:
LONG_DESCRIPTION = fh.read()
setuptools.setup(name=NAME,
version=VERSION,
description=DESCRIPTION,
long_description = LONG_DESCRIPTION,
url=URL,
author=AUTHOR,
author_email=EMAIL,
packages= setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
install_requires=[
'deap>=1.4.1',
'h5py>=3.9.0',
'matplotlib>=3.7.2',
'numpy>=1.24.3',
'pandas>=2.0.3',
'pvlib>=0.10.2',
'pyDOE>=0.3.8',
'scipy>=1.11.1',
'sobolsequence>=0.2.1',
],
python_requires = ">=3.10",
include_package_data=True,
zip_safe=False)