|
1 |
| -from setuptools import setup |
| 1 | +from setuptools import setup, find_packages |
2 | 2 |
|
3 | 3 | extras_require = [
|
4 | 4 | 'ray[rllib,debug]==0.7.3',
|
|
23 | 23 | 'pandas==0.25.0',
|
24 | 24 | ]
|
25 | 25 |
|
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 | + }, |
33 | 72 | )
|
0 commit comments