generated from epignatelli/python-library
-
Notifications
You must be signed in to change notification settings - Fork 6
/
pyproject.toml
75 lines (64 loc) · 2.44 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
# This toml file is in comliance with PEP 517, PEP 518 and PEP 621
# However, setuptools support for these is only in Beta
# For now, `setup.py` is still the first option for pip
[build-system]
build-backend = "setuptools.build_meta"
requires = ["setuptools >= 50", "setuptools-scm[toml]>=6.2", "wheel"]
[project]
name = "HELX"
dynamic = ["version", "dependencies"]
description = "Interoperate among reinforcement learning libraries with jax, pytorch, gym and dm_env"
requires-python = ">=3.8"
readme = "README.md"
license = {file = "LICENSE", name = "Apache-2.0"}
authors = [
{name = "Eduardo Pignatelli", email = "edu.pignatelli@gmail.com"},
]
maintainers = [
{name = "Eduardo Pignatelli", email = "edu.pignatelli@gmail.com"},
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Intended Audience :: Financial and Insurance Industry",
"Intended Audience :: Healthcare Industry",
"Environment :: GPU",
"Environment :: GPU :: NVIDIA CUDA",
"Environment :: GPU :: NVIDIA CUDA :: 11.0",
"Environment :: GPU :: NVIDIA CUDA :: 11.1",
"Environment :: GPU :: NVIDIA CUDA :: 11.2",
"Environment :: GPU :: NVIDIA CUDA :: 11.3",
"Environment :: GPU :: NVIDIA CUDA :: 11.4",
"Environment :: GPU :: NVIDIA CUDA :: 11.5",
"Environment :: GPU :: NVIDIA CUDA :: 11.6",
"Environment :: GPU :: NVIDIA CUDA :: 11.7",
"Environment :: GPU :: NVIDIA CUDA :: 11.8",
"Framework :: Pytest",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Software Development",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
]
[project.urls]
homepage = "https://github.com/epignatelli/helx"
repository = "https://github.com/epignatelli/helx"
bug_tracker = "https://github.com/epignatelli/helx/issues"
[tool.setuptools.dynamic]
version = {attr = "helx._version.__version__"}
dependencies = {file = "./requirements.txt"}
[tool.setuptools.packages.find]
include = ["helx*"]
exclude = ["test", "examples"]
[tool.distutils.bdist_wheel]
universal = true
[tool.black]
line-length = 88