-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
34 lines (31 loc) · 1.04 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
"""Setup script for the HandoverOptimDRL package."""
from setuptools import setup, find_packages
# Read requirements from requirements.txt
with open("requirements.txt", encoding="utf-8") as f:
requirements = f.read().splitlines()
setup(
name="ho_optim_drl",
version="0.0.1",
description="Framework for learning handover algorithms using deep reinforcement learning.",
author="Johannes Voigt",
author_email="[email protected]",
url="https://github.com/kit-cel/HandoverOptimDRL",
license="MIT",
packages=find_packages(where="src"),
package_dir={"": "src"},
install_requires=requirements,
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires=">=3.12",
entry_points={
"console_scripts": [
"validate_3gpp=scripts.validate_3gpp:main",
"validate_ppo=scripts.validate_ppo:main",
],
},
include_package_data=True,
zip_safe=False,
)