-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
55 lines (50 loc) · 1.12 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
[metadata]
name = x7-geom
author = Glenn Gribble
author_email = [email protected]
description = X7 Geometry library: Point, Vector, Line...
long_description = file: README.rst
version = attr: x7.geom.__version__
url = https://github.com/gribbg/x7-geom
keywords =
# cool printing
classifiers =
License :: OSI Approved :: MIT License
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3.8
Programming Language :: Python :: Implementation :: CPython
Programming Language :: Python :: Implementation :: PyPy
license_files =
LICENSE
[options]
python_requires = >= 3.8
packages = find:
zip_safe = False
install_requires =
bezier
numpy
matplotlib
pygifsicle
scipy
x7-lib
x7-testing
[options.packages.find]
exclude =
tests
tests.*
test_inputs
test_inputs.*
[options.extras_require]
tests =
pytest
flake8
mypy
[options.entry_points]
console_scripts =
# some_program = some_package:__main__:cli
[flake8]
ignore = E226,E241,E704,E741,E743,W503,W504,F403,F405
max-line-length = 160
exclude = tests/*
max-complexity = 15