-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.cfg
63 lines (56 loc) · 1.92 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
[metadata]
name = nocturne
version = 0.0.1
description = A data-driven, fast driving simulator for multi-agent coordination under partial observability.
long_description = file: README.rst # todo
author = Nathan Lichtle, Eugene Vinitsky, and Xiaomeng Yang
author_email = nathan.lichtle@berkeley, ... # todo
url = https://github.com/facebookresearch/nocturne/
license = MIT
classifiers = # todo
Development Status :: 5 - Production/Stable
Intended Audience :: Developers
Topic :: Software Development :: Libraries :: Python Modules
Topic :: Utilities
Programming Language :: C++
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
License :: OSI Approved :: BSD License
Programming Language :: Python :: Implementation :: PyPy
Programming Language :: Python :: Implementation :: CPython
Programming Language :: C++
Topic :: Software Development :: Libraries :: Python Modules
keywords =
Driving
Simulation
Autonomous Vehicles
Waymo
Reinforcement Learning
# todo
project_urls =
Documentation = https://nocturne.readthedocs.io/
Bug Tracker = https://github.com/fb/nocturne/issues
Discussions = https://github.com/fb/nocturne/discussions
Changelog = https://nocturne.readthedocs.io/en/latest/changelog.html
Chat = https://gitter.im/nocturne/Lobby
[options]
zip_safe = False
python_requires = >=3.8
[tool:pytest]
minversion = 6.0
addopts = -ra -q
testpaths =
tests
[flake8]
max-line-length = 120
show_source = True
exclude = .git, __pycache__, build, docs, _deps, third_party, algos, nocturne/envs/__init__.py, examples/nocturne_functions.py
[pydocstyle]
inherit = false
match = .*\.py
match_dir = ^(?!.git|__pycache__|build|docs|_deps|third_party|algos).*
convention = numpy