Skip to content

Commit a766c59

Browse files
Made package a PyPI package: installable by pip
1 parent e540813 commit a766c59

File tree

3 files changed

+53
-8
lines changed

3 files changed

+53
-8
lines changed

config_readme.md README_CONFIGS.md

File renamed without changes.

pyproject.toml

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
[build-system]
2+
requires = [
3+
"setuptools>=42",
4+
"wheel"
5+
]
6+
build-backend = "setuptools.build_meta"

setup.py

+47-8
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
from setuptools import setup
1+
from setuptools import setup, find_packages
22

33
extras_require = [
44
'ray[rllib,debug]==0.7.3',
@@ -23,11 +23,50 @@
2323
'pandas==0.25.0',
2424
]
2525

26-
setup(name='mdp_playground',
27-
version='0.0.1',
28-
install_requires=['gym'],
29-
extras_require={
30-
'extras_disc': extras_require,
31-
'extras_cont': extras_require_cont,
32-
},
26+
AUTHORS = ', '.join(["Raghu Rajan", "Jessica Borja",
27+
"Suresh Guttikonda", "Fabio Ferreira",
28+
"André Biedenkapp", "Frank Hutter",
29+
]),
30+
31+
AUTHOR_EMAIL = '[email protected]'
32+
33+
LICENSE = 'Apache License, Version 2.0'
34+
35+
36+
with open("README.md", "r", encoding="utf-8") as fh:
37+
long_description = fh.read()
38+
39+
setup(
40+
name='mdp-playground',
41+
version='0.0.1',
42+
author=AUTHORS,
43+
author_email=AUTHOR_EMAIL,
44+
description="A python package to design and debug RL agents",
45+
long_description=long_description,
46+
long_description_content_type="text/markdown",
47+
license=LICENSE,
48+
url="https://github.com/RaghuSpaceRajan/mdp-playground",
49+
project_urls={
50+
"Bug Tracker": "https://github.com/RaghuSpaceRajan/mdp-playground/issues",
51+
},
52+
classifiers=[
53+
"Programming Language :: Python :: 3",
54+
"License :: OSI Approved :: Apache Software License",
55+
"Operating System :: OS Independent",
56+
'Natural Language :: English',
57+
'Intended Audience :: Developers',
58+
'Intended Audience :: Education',
59+
'Intended Audience :: Science/Research',
60+
'Topic :: Scientific/Engineering :: Artificial Intelligence',
61+
# 'Topic :: Scientific/Engineering :: Machine Learning',
62+
# 'Topic :: Scientific/Engineering :: Reinforcement Learning', invalid classifiers on Pypi
63+
],
64+
# package_dir={"": "src"},
65+
packages=find_packages(),
66+
python_requires=">=3.6",
67+
install_requires=['gym'],
68+
extras_require={
69+
'extras_disc': extras_require,
70+
'extras_cont': extras_require_cont,
71+
},
3372
)

0 commit comments

Comments
 (0)