-
Notifications
You must be signed in to change notification settings - Fork 246
/
setup.cfg
46 lines (43 loc) · 1.32 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
[metadata]
name = manifpy
description = A small library for Lie theory.
long_description = file: README.md; charset=UTF-8
long_description_content_type = text/markdown
author = Jeremie Deray
author_email = [email protected]
license = MIT
platforms = any
url = https://github.com/artivis/manif
project_urls =
Source = https://github.com/artivis/manif
Tracker = https://github.com/artivis/manif/issues
keywords = geometry lie-theory state-estimation slam robotics computer-vision
classifiers =
Development Status :: 5 - Production/Stable
Operating System :: OS Independent
Operating System :: POSIX :: Linux
Operating System :: MacOS
Operating System :: Microsoft :: Windows
Framework :: Robot Framework
Intended Audience :: Science/Research
Intended Audience :: Developers
Intended Audience :: Education
Programming Language :: C++
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
License :: OSI Approved :: MIT License
[options]
zip_safe = False
python_requires = >=3.6
[options.extras_require]
testing =
pytest
numpy
all =
%(testing)s
[tool:pytest]
testpaths = test/python