Skip to content

Instantly share code, notes, and snippets.

@tamuhey
Last active October 13, 2019 11:49
Show Gist options
  • Save tamuhey/069c5afefece47086f3d6f7e3f8f967a to your computer and use it in GitHub Desktop.
Save tamuhey/069c5afefece47086f3d6f7e3f8f967a to your computer and use it in GitHub Desktop.
minimal setup.cfg
[metadata]
name = {}
home-page = {}
long-description = file: README.md
[options]
zip_safe = false
include_package_data = true
python_requires = >=3.6
packages = {}
test_suite = tests
setup_requires =
setuptools >=38.3.0 # version with most `setup.cfg` bugfixes
install_requires =
tests_require =
pytest
[options.extras_require]
dev =
isort
pylint
pylight
flake8
black
pytest
[flake8]
doctests = True
exclude = .git, .eggs, __pycache__, tests/, docs/, build/, dist/
[tool:pytest]
testpaths = tests
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment