-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.cfg
22 lines (18 loc) · 862 Bytes
/
setup.cfg
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
[egg_info]
#tag_date = 1 already covered by setuptools_scm
#tag_build = .dev --this adds ".dev" at the end of the release name. we already use setuptools_scm so already covered.
#tag_svn_revision = 1 --this adds "_r0" at the end of the release name. we already use setuptools_scm so already covered.
[bdist_wheel]
# This flag says that the code is written to work on both Python 2 and Python
# 3. If at all possible, it is good practice to do this. If you cannot, you
# will need to generate wheels for each Python version that you support.
universal=1
[metadata]
description-file = README.md
# In order to be able to execute 'python setup.py test'
# from https://docs.pytest.org/en/latest/goodpractices.html#integrating-with-setuptools-python-setup-py-test-pytest-runner
[aliases]
test=pytest
[tool:pytest]
addopts = --verbose
testpaths = getversion/tests