-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
49 lines (41 loc) · 1.3 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
[tool.black]
line-length = 88
[tool.isort]
profile = "black"
[tool.ruff]
line-length = 88
target-version = "py310"
src = ["evorl", "tests"]
[tool.ruff.lint.per-file-ignores]
"__init__.py" = ["F401"]
[tool.pytest.ini_options]
testpaths = ["tests"]
[build-system]
requires = ["setuptools >= 62.6"] # to support `file` directive
build-backend = "setuptools.build_meta"
[tool.setuptools.dynamic]
version = {attr = "evorl.__version__"}
dependencies = {file = ["requirements/requirements.txt"]}
optional-dependencies.dev = {file = ["requirements/requirements-dev.txt"] }
[tool.setuptools.packages.find]
include = ["evorl"]
namespaces = false
[project]
name = "evorl"
authors = [
{name = "Bowen Zheng", email = "[email protected]"}
]
description = "An efficient Evolutionary Reinforcement Learning Framework on Jax"
readme = "README.md"
dynamic = ["version", "dependencies", "optional-dependencies"]
requires-python = ">= 3.10"
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Environment :: GPU",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.10",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Software Development :: Libraries :: Python Modules",
]