-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
56 lines (52 loc) · 1.53 KB
/
setup.py
File metadata and controls
56 lines (52 loc) · 1.53 KB
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
54
55
56
import os
import setuptools
from setuptools import setup
__version__ = '0.1.0'
pkgs = {
"required": [
"cvxpy",
"grid2op",
"l2rpn_baselines",
"lightsim2grid",
"numpy",
"torch",
"tensorflow",
"stable-baselines3",
"imageio",
"numba",
"lxml",
],
}
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(name='ExpertAgent',
version=__version__,
description='ExpertAgent to solve power grid congestion and overload',
long_description=long_description,
long_description_content_type="text/markdown",
classifiers=[
'Development Status :: 4 - Beta',
'Programming Language :: Python :: 3.10',
"License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"Natural Language :: English"
],
keywords='AI4REALNET project',
author='IRTSX',
url="https://github.com/AI4REALNET/T2.1_deep_expert",
license='MPL',
packages=setuptools.find_packages(),
include_package_data=True,
package_data={
# If any package contains *.txt or *.rst files, include them:
"": ["*.ini", "*.zip", "*.npz"],
},
install_requires=pkgs["required"],
# extras_require=pkgs["extras"],
zip_safe=False,
entry_points={
'console_scripts': []
}
)