forked from jlm429/bettermdptools
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
35 lines (28 loc) · 1.1 KB
/
setup.py
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
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
"""
"pip install pygame" error warning:
if you're facing trouble installing pygame with Python 3.11, you need to install with following command:
'pip install pygame --pre'
More discussion:
https://stackoverflow.com/questions/74188013/python-pygame-not-installing
Conda/jupyter import issues
Make sure the site-packages directory has the correct name. Run the following command to locate the site-packages folder.
python -c "import site; print(site.getsitepackages())"
Also see:
https://stackoverflow.com/questions/43485569/installed-a-package-with-anaconda-cant-import-in-python
"""
setup(
name='bettermdptools',
url='https://github.com/jlm429/bettermdptools',
version='0.6.0',
platforms=['Any'],
license='New BSD',
author='John Mansfield',
author_email='[email protected]',
packages=["bettermdptools"],
include_package_data=True,
use_scm_version=True,
setup_requires=['setuptools_scm'],
install_requires=['gymnasium>=0.26, <=0.26.3', 'pygame', 'numpy', 'tqdm', 'pandas', 'seaborn', 'matplotlib'],
)