This repository has been archived by the owner on Feb 1, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
65 lines (59 loc) · 1.75 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
[metadata]
name = compas_convert
description = Conversions between compas objects and CAD specific objects.
long_description = file: README.md, CHANGELOG.md, LICENSE
long_description_content_type = text/markdown
url = https://github.com/tetov/compas_convert
project_urls =
Repository = https://github.com/tetov/compas_convert
Issues = https://github.com/tetov/compas_convert/issues
author = Anton Tetov Johansson
maintainer = Anton Tetov Johansson
maintainer_email = [email protected]
keywords = geometry
classifiers =
Development Status :: 4 - Beta
Intended Audience :: Developers
Topic :: Scientific/Engineering
License :: OSI Approved :: MIT License
Operating System :: Unix
Operating System :: POSIX
Operating System :: Microsoft :: Windows
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: Implementation :: CPython
Programming Language :: Python :: Implementation :: IronPython
license = MIT license
license_file = LICENSE
[options]
package_dir =
=src
packages=find:
zip_safe = False
include_package_data = True
install_requires =
compas >= 0.17.2, < 1.14
python_requires = >=3.7
[options.packages.find]
where=src
[options.extras_require]
dev =
black >= 21.5b2
build >=0.4.0
flake8
graphviz >=0.16
importlib_metadata;python_version<'3.8'
invoke >=1.5.0
mypy >= 0.790
pydocstyle[toml]
pytest >= 6
reorder-python-imports >= 2.5.0
setuptools_scm[toml] >= 4.1,< 7.0
[bdist_wheel]
universal = 1
[flake8]
max-line-length = 88
extend-ignore = E203