-
Notifications
You must be signed in to change notification settings - Fork 19
/
setup.cfg
47 lines (43 loc) · 1.44 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 = PyPAC
# attr: pypac.__version__ via AST added in setuptools 46.4+, which doesn't support PY27.
version = 0.16.4
author = Carson Lam
author_email = [email protected]
description = Proxy auto-config and auto-discovery for Python.
long_description = file: README.rst, HISTORY.rst
keywords = pypac, pac, proxy, autoconfig, requests
url = https://github.com/carsonyl/pypac
license = Apache-2.0
license_file = LICENSE
classifiers =
Programming Language :: Python :: 2
Programming Language :: Python :: 2.7
Programming Language :: Python :: 3
Programming Language :: Python :: 3.5
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Topic :: Internet
Environment :: Web Environment
Intended Audience :: Developers
License :: OSI Approved :: Apache Software License
Operating System :: OS Independent
[options]
packages = pypac
python_requires = >=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*
install_requires =
requests >= 2.0.0
tldextract >= 2.2.3
dukpy >= 0.2.2
pyobjc-framework-SystemConfiguration >= 3.2.1; sys_platform=="darwin"
[options.extras_require]
socks = requests[socks] >= 2.10.0
dev = pytest; pytest-cov; mock; wheel
[bdist_wheel]
universal = 1
[flake8]
exclude = docs