|
| 1 | +[build-system] |
| 2 | +requires = ["setuptools>=45", "wheel"] |
| 3 | +build-backend = "setuptools.build_meta" |
| 4 | + |
| 5 | +[project] |
| 6 | +name = "pufferlib-core" |
| 7 | +version = "3.0.3" |
| 8 | +description = "Minimal PufferLib core functionality with vectorized environments" |
| 9 | +readme = "README.md" |
| 10 | +requires-python = ">=3.8" |
| 11 | +license = {text = "MIT"} |
| 12 | +authors = [ |
| 13 | + { name = "Joseph Suarez", email = "[email protected]"}, |
| 14 | +] |
| 15 | +keywords = [ |
| 16 | + "reinforcement-learning", |
| 17 | + "machine-learning", |
| 18 | + "multi-agent", |
| 19 | + "vectorized-environments", |
| 20 | +] |
| 21 | +classifiers = [ |
| 22 | + "Development Status :: 5 - Production/Stable", |
| 23 | + "Environment :: Console", |
| 24 | + "Intended Audience :: Developers", |
| 25 | + "Intended Audience :: Education", |
| 26 | + "Intended Audience :: Science/Research", |
| 27 | + "License :: OSI Approved :: MIT License", |
| 28 | + "Operating System :: OS Independent", |
| 29 | + "Programming Language :: Python :: 3", |
| 30 | + "Programming Language :: Python :: 3.8", |
| 31 | + "Programming Language :: Python :: 3.9", |
| 32 | + "Programming Language :: Python :: 3.10", |
| 33 | + "Programming Language :: Python :: 3.11", |
| 34 | + "Programming Language :: Python :: 3.12", |
| 35 | + "Topic :: Scientific/Engineering :: Artificial Intelligence", |
| 36 | + "Topic :: Software Development :: Libraries :: Python Modules", |
| 37 | +] |
| 38 | +dependencies = [ |
| 39 | + "numpy", |
| 40 | + "gymnasium", |
| 41 | + "psutil" |
| 42 | +] |
| 43 | + |
| 44 | +[project.urls] |
| 45 | +Homepage = "https://github.com/PufferAI/PufferLib" |
| 46 | +Documentation = "https://puffer.ai" |
| 47 | +Repository = "https://github.com/PufferAI/PufferLib" |
| 48 | +Issues = "https://github.com/PufferAI/PufferLib/issues" |
| 49 | + |
| 50 | +[tool.setuptools.packages.find] |
| 51 | +include = ["pufferlib*"] |
| 52 | + |
| 53 | +[tool.setuptools.package-data] |
| 54 | +pufferlib = ["*.py"] |
0 commit comments