-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.cfg
51 lines (42 loc) · 1.08 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
[metadata]
name = nettlesome
version = 0.7.0
author= Matt Carey
author_email = [email protected]
description = simplified semantic reasoning
long_description = file: readme.md
long_description_content_type = text/markdown
url = https://github.com/mscarey/nettlesome
project_urls =
Bug Tracker = https://github.com/mscarey/nettlesome/issues
Documentation = https://nettlesome.readthedocs.io/en/latest/
classifiers =
Development Status :: 3 - Alpha
License :: Free To Use But Restricted
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Operating System :: OS Independent
Natural Language :: English
[options]
packages = find:
python_requires = >=3.8
[pydocstyle]
add-ignore=D105,D202,D301
[flake8]
ignore = E121, E122, E124, E126, E128, E203, E302, E303, E501, E902, F821, W503
exclude =
.git,
__pycache__,
docs/source/conf.py,
build,
dist,
html,
htmlcov,
notebooks,
prof,
max-complexity = 10
[mypy]
new_semantic_analyzer = True
[pylint]
ignore = E0239