generated from TradeRES/toolbox-project-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
47 lines (40 loc) · 1.27 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
from setuptools import find_packages, setup
__author__ = [
"Ingrid Sanchez",
"Jim Hommes"
]
__copyright__ = "Copyright 2022"
__credits__ = ["Laurens de Vries", "Milos Cvetkovic"]
__license__ = "MIT License"
__maintainer__ = "Ingrid Sanchez"
__email__= "[email protected]"
__status__ = "under development"
def readme():
with open("README.md") as f:
return f.read()
setup(
name="Emlab-py",
version="0.0.0",
description="electricity markets ABM",
long_description="""
modular python version of EMLAB
""",
keywords=["ABM", "electricity markets"],
author=", ".join(__author__),
author_email=__email__,
package_dir={"": "emlabpy"},
packages=find_packages(where="emlabpy",
include=['domain', 'util', 'modules'],
exclude=['helpers'],
),
py_modules = ['domain', 'modules', 'util'],
entry_points={ },
classifiers=['Development Status :: 3 - Alpha',
'Intended Audience :: Energy Modellers',
'License :: OSI Approved :: MIT License'],
install_requires=[],
extras_require={},
include_package_data=True,
zip_safe=False,
python_requires=">=3.6",
)