-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
55 lines (49 loc) · 1.29 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 = no-optional
version = 0.4.0
description = Replace `Optional[T]` by `Union[T, None]`! 🎉
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/Kludex/no-optional
author = Marcelo Trylesinski
author_email = [email protected]
license = MIT
license_file = LICENSE
classifiers =
License :: OSI Approved :: MIT License
Intended Audience :: Developers
Natural Language :: English
Operating System :: OS Independent
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
project_urls =
Twitter = https://twitter.com/marcelotryle
[options]
packages = find:
include_package_data = True
install_requires =
libcst
typer
python_requires = >=3.7
[options.extras_require]
test =
coverage[toml] >= 6.2
pytest >= 6.2.5
[options.entry_points]
console_scripts =
no-optional = no_optional.main:app
[flake8]
statistics = True
max-line-length = 88
ignore = E203,E501,W503
per-file-ignores =
__init__.py:F401
[coverage:run]
source_pkgs = no_optional, tests
[coverage:report]
show_missing = True
skip_covered = True