-
Notifications
You must be signed in to change notification settings - Fork 17
/
pyproject.toml
35 lines (32 loc) · 1.19 KB
/
pyproject.toml
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
[build-system]
requires = ["setuptools >= 67.8.0"]
build-backend = "setuptools.build_meta"
[project]
name = "xroute_env"
description = "A standard API for reinforcement learning in detailed routing."
readme = "README.md"
requires-python = ">= 3.9"
license = {text = "BSD-3-Clause"}
keywords = ["Reinforcement Learning", "VLSI", "EDA", "RL", "AI", "detailed routing", "gymnasium"]
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Topic :: Scientific/Engineering :: Electronic Design Automation (EDA)',
]
dependencies = [
"gymnasium == 0.28.1"
]
dynamic = ["version"]
[project.urls]
Homepage = "https://xplan-lab.org/"
Repository = "https://github.com/xplanlab/xroute_env"
Documentation = "https://github.com/xplanlab/xroute_env"
"Bug Report" = "https://github.com/xplanlab/xroute_env/issues"
[tool.setuptools.packages.find]
include = ["xroute_env", "xroute_env.*"]