forked from BerkeleyAutomation/python-fcl
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.cfg
60 lines (56 loc) · 1.64 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
[metadata]
name = python-fcl
version = attr: fcl.__version__
description = Python bindings for the Flexible Collision Library
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/BerkeleyAutomation/python-fcl.git
author = Jelle Feringa, Matthew Matl, Shirokuma, Michael Dawson-Haggerty, See contributor list
maintainer = Matthew Matl
maintainer_email = [email protected]
license = BSD
license_files = LICENSE
classifiers =
Development Status :: 3 - Alpha
License :: OSI Approved :: BSD License
Operating System :: POSIX :: Linux
Operating System :: MacOS
Operating System :: Microsoft :: Windows
Programming Language :: Python :: 3
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
Programming Language :: Python :: 3.11
Programming Language :: Python :: Implementation :: CPython
keywords = fcl collision distance
[options]
include_package_data = True
package_dir =
= src
packages = find:
setup_requires =
numpy
Cython
install_requires =
numpy; python_version<'3.12'
numpy>=1.26.0b1; python_version>='3.12'
Cython
[options.package_data]
* = *.pyx, *.pxd, *.dll
[options.packages.find]
where = src
[flake8]
max_line_length = 90
ignore = W503,W504,E203,E266,E501,E731,C901,B903,B009,B010
max-complexity = 18
select = B,C,E,F,W,T4,B9
exclude =
.git
__pycache__
build
dist
tests
.eggs