-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
47 lines (42 loc) · 1.06 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
[metadata]
name = requests_splash
version = attr: read_version_file.version
description = Splash headless browser adapter for Requests.
long_description = file: README.rst, HISTORY.rst
author = Antoine Cezar
author_email = [email protected]
url = https://github.com/AntoineCezar/requests-splash
classifiers =
Development Status :: 2 - Pre-Alpha
Intended Audience :: Developers
Programming Language :: Python :: 3
Programming Language :: Python :: 3.5
Programming Language :: Python :: 3.6
[options]
zip_safe = False
include_package_data = True
packages = find:
install_requires =
requests
# TODO: put package requirements here
[options.entry_points]
console_scripts =
requests-splash = requests_splash.cli:main
[options.extras_require]
testing =
# TODO: put package testing requirements here
develop =
bumpversion
coverage
flake8
mypy
sphinx
watchdog
wheel
# TODO: put package develop requirements here
[options.packages.find]
exclude =
tests
# TODO: put exclusion patterns here
[wheel]
universal = 1