-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup_old.py
More file actions
31 lines (29 loc) · 1.12 KB
/
Copy pathsetup_old.py
File metadata and controls
31 lines (29 loc) · 1.12 KB
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
from setuptools import setup, find_packages, find_namespace_packages
import pathlib
setup(
name='adaptgym',
version='0.1.1',
description='Environments for testing agent adaptation.',
url='http://github.com/izkula/adaptgym',
# long_description=pathlib.Path('README.md').read_text(),
long_description_content_type='text/markdown',
# packages=['adaptgym'],
# packages=find_packages(),
packages=find_namespace_packages(where='adaptgym'),
package_dir={"": "adaptgym"},
package_data = {"":['*.xml', '**/*.xml', '*.png', '**/*.png']},
install_requires=['numpy==1.19.2',
# 'numpy==1.22',
'scipy>=1.7.0', 'matplotlib>=3.4.2', 'imageio',
'dm-control==1.0.7', 'dm-env==1.5', 'dm-tree==0.1.7',
'crafter==1.8.0',
'Pillow==8.2.0',
# 'Pillow>=9.2.0',
],
python_requires='>=3.7',
classifiers=[
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
],
)