-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.cfg
62 lines (54 loc) · 1.33 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
[metadata]
name = tex2nix
version = 0.0.0
author = Jörg Thalheim
author-email = [email protected]
home-page = https://github.com/Mic92/tex2nix
description = texlive expressions for documents
long-description = file: README.md
license = MIT
license-file = LICENSE
platform = any
classifiers =
Development Status :: 5 - Production/Stable
Environment :: Console
Topic :: Utilities
License :: OSI Approved :: MIT License
Operating System :: OS Independent
Programming Language :: Python
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
[options]
zip_safe = true
include_package_data = true
python_requires = >= 3.6
packages = find:
setup_requires =
setuptools
[options.entry_points]
console_scripts =
tex2nix = tex2nix:main
[bdist_wheel]
universal = true
[check]
metadata = true
restructuredtext = true
strict = true[wheel]
universal = 1
[pycodestyle]
max-line-length = 88
# E203 conflicts with black
ignore = E501,E741,W503,E203
[flake8]
max-line-length = 88
# E203 conflicts with black
ignore = E501,E741,W503,E203
exclude = .git,__pycache__,docs/source/conf.py,old,build,dist
[mypy]
warn_redundant_casts = true
disallow_untyped_calls = true
disallow_untyped_defs = true
no_implicit_optional = true
[mypy-setuptools.*]
ignore_missing_imports = True