forked from kaamiki/hannah
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
89 lines (80 loc) · 2.14 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
[metadata]
name = hannah
version = 1.0.0
description = Heuristically Aiding Neural Network based AI for Humans
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/kaamiki/hannah
author = Akshay Mestry (XAMES3)
author_email = [email protected]
maintainer = Akshay Mestry (XAMES3)
license = MIT
license_file = LICENSE
platforms = unix, linux, osx, cygwin, win32
classifiers =
Development Status :: 4 - Beta
License :: OSI Approved :: MIT License
Operating System :: MacOS :: MacOS X
Operating System :: Microsoft :: Windows
Operating System :: POSIX
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Topic :: Software Development :: Libraries
Topic :: Software Development :: Libraries :: Python Modules
Topic :: Utilities
keywords = python, hannah, kaamiki, neural-networks
project_urls =
Source = https://github.com/kaamiki/hannah
Tracker = https://github.com/kaamiki/hannah/issues
[options]
packages = find:
python_requires = >=3.6
zip_safe = False
[options.extras_require]
dev =
black
flake8
mypy
sphinx
sphinx_rtd_theme
test =
pytest
tox
[bdist_wheel]
universal = True
[build_sphinx]
source_dir = doc/en/
build_dir = doc/build
all_files = 1
[upload_sphinx]
upload_dir = doc/en/build/html
[check-manifest]
ignore =
hannah/_version.py
[flake8]
max-line-length = 79
extend-ignore =
E203, # Whitespace before :
W503, # Whitespace before binary operator
W504, # Whitespace after binary operator
W505 # Docstring length > 79 chars
[mypy]
mypy_path = hannah
check_untyped_defs = true
disallow_any_generics = true
disallow_incomplete_defs = true
disallow_untyped_defs = true
ignore_missing_imports = true
no_implicit_optional = true
show_error_codes = true
strict_equality = true
warn_redundant_casts = true
warn_return_any = true
warn_unreachable = true
warn_unused_configs = true
[mypy-tests.*]
disallow_untyped_defs = false