-
Notifications
You must be signed in to change notification settings - Fork 58
/
Copy pathsetup.cfg
45 lines (41 loc) · 1.32 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
[metadata]
license = Apache-2.0
classifiers =
License :: OSI Approved :: Apache Software License
Intended Audience :: Developers
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3.5
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Topic :: Software Development :: Libraries
Topic :: Internet :: WWW/HTTP
Framework :: AsyncIO
Operating System :: MacOS :: MacOS X
Operating System :: Microsoft :: Windows
Operating System :: POSIX
License :: OSI Approved :: Apache Software License
Development Status :: 3 - Alpha
[options]
packages = aiohttp_cors
python_requires = >=3.5.3
install_requires =
aiohttp>=3.0
typing;python_version<'3.5'
setup_requires =
# Environment markers were implemented and stabilized in setuptools
# v20.8.1 (see <http://stackoverflow.com/a/32643122/391865>).
setuptools>=20.8.1
# If line above doesn't work, check that you have at least
# setuptools v19.4 (released 2016-01-16):
# <https://github.com/pypa/setuptools/issues/141>
tests_require =
pytest
pytest-cov
pytest-pylint
selenium
pytest_runner
[aliases]
test = pytest
[tool:pytest]
addopts= --cov=aiohttp_cors --cov-report=term --cov-report=html --cov-branch --no-cov-on-fail