|
| 1 | +[metadata] |
| 2 | +name = scheme8 |
| 3 | +version = 0.0.1 |
| 4 | +description = scheme8 |
| 5 | +long_description = file: README.md |
| 6 | +long_description_content_type = text/markdown |
| 7 | +url = https://github.com/pycontribs/scheme8 |
| 8 | +author = Sorin Sbarnea |
| 9 | + |
| 10 | +project_urls = |
| 11 | + Source=https://github.com/pycontribs/scheme8 |
| 12 | + Tracker=https://github.com/tox-dev/pycontribs/scheme8 |
| 13 | +license = MIT |
| 14 | +license_file = LICENSE |
| 15 | +classifiers = |
| 16 | + License :: OSI Approved :: MIT License |
| 17 | + Programming Language :: Python :: 2 |
| 18 | + Programming Language :: Python :: 2.7 |
| 19 | + Programming Language :: Python :: 3 |
| 20 | + Programming Language :: Python :: 3.5 |
| 21 | + Programming Language :: Python :: 3.6 |
| 22 | + Programming Language :: Python :: 3.7 |
| 23 | + Programming Language :: Python :: 3.8 |
| 24 | + Programming Language :: Python :: Implementation :: CPython |
| 25 | + Programming Language :: Python :: Implementation :: PyPy |
| 26 | + |
| 27 | +[options] |
| 28 | +use_scm_version = True |
| 29 | +packages = find: |
| 30 | +include_package_data = true |
| 31 | +install_requires = |
| 32 | + pyyaml |
| 33 | + jsonschema |
| 34 | + six |
| 35 | + typing; python_version<"3.5" |
| 36 | +python_requires = >=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.* |
| 37 | + |
| 38 | +[options.entry_points] |
| 39 | +console_scripts = |
| 40 | + scheme8 = scheme8.__main__:main |
| 41 | + |
| 42 | +[options.packages.find] |
| 43 | +exclude = |
| 44 | + tests* |
| 45 | + testing* |
| 46 | + |
| 47 | +[bdist_wheel] |
| 48 | +universal = True |
| 49 | + |
| 50 | +[mypy] |
| 51 | +check_untyped_defs = true |
| 52 | +disallow_any_generics = true |
| 53 | +disallow_incomplete_defs = true |
| 54 | +disallow_untyped_defs = true |
| 55 | +no_implicit_optional = true |
| 56 | + |
| 57 | +[mypy-testing.*] |
| 58 | +disallow_untyped_defs = false |
| 59 | + |
| 60 | +[mypy-tests.*] |
| 61 | +disallow_untyped_defs = false |
| 62 | + |
| 63 | +[flake8] |
| 64 | +# do not add excludes for files in repo |
| 65 | +exclude = .venv/,.tox/,dist/,build/,.eggs/ |
| 66 | +format = pylint |
| 67 | +# E203: https://github.com/python/black/issues/315 |
| 68 | +ignore = E741,W503,W504,H,E501,E203 |
| 69 | +# 88 is official black default: |
| 70 | +max-line-length = 88 |
0 commit comments