-
Notifications
You must be signed in to change notification settings - Fork 26
/
setup.cfg
94 lines (86 loc) · 2.4 KB
/
setup.cfg
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
# Copyright (C) 2021 Istituto Italiano di Tecnologia (IIT). All rights reserved.
# This software may be modified and distributed under the terms of the
# GNU Lesser General Public License v2.1 or any later version.
[metadata]
name = gym_ignition
description = A toolkit for developing OpenAI Gym environments simulated with Ignition Gazebo.
long_description = file: README.md
long_description_content_type = text/markdown
author = Diego Ferigo
author_email = [email protected]
license = LGPL
license_file = LICENSE
platforms = any
url = https://github.com/robotology/gym-ignition
project_urls =
Changelog = https://github.com/robotology/gym-ignition/releases
Tracker = https://github.com/robotology/gym-ignition/issues
Documentation = https://robotology.github.io/gym-ignition
Source = https://github.com/robotology/gym-ignition
keywords =
openai
gym
reinforcement learning
rl
environment
gazebo
robotics
ignition
humanoid
panda
icub
urdf
sdf
classifiers =
Development Status :: 5 - Production/Stable
Operating System :: POSIX :: Linux
Topic :: Games/Entertainment :: Simulation
Topic :: Scientific/Engineering :: Artificial Intelligence
Topic :: Scientific/Engineering :: Physics
Topic :: Software Development
Framework :: Robot Framework
Intended Audience :: Developers
Intended Audience :: Science/Research
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: Implementation :: CPython
License :: OSI Approved :: GNU Lesser General Public License v2 or later (LGPLv2+)
[options]
zip_safe = False
packages = find:
package_dir =
=python
python_requires = >=3.8
install_requires =
scenario >= 1.3.2.dev
gym >= 0.13.1
numpy
scipy
gym_ignition_models
lxml
idyntree
[options.packages.find]
where = python
[options.extras_require]
testing =
pytest
pytest-xvfb
pytest-icdiff
website =
sphinx
sphinx-book-theme
sphinx-autodoc-typehints
sphinx_fontawesome
sphinx-multiversion
sphinx-tabs
breathe
all =
%(testing)s
%(website)s
[tool:pytest]
addopts = -rsxX -v --strict-markers
testpaths = tests
markers =
scenario: Select the tests in the 'tests/test_scenario/' folder.
gym_ignition: Select the tests in the 'tests/test_gym_ignition/' folder.