-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.cfg
More file actions
44 lines (36 loc) · 1.06 KB
/
setup.cfg
File metadata and controls
44 lines (36 loc) · 1.06 KB
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
[bumpversion]
current_version = 0.2.2
[bumpversion:file:setup.cfg]
search = version = {current_version}
replace = version = {new_version}
[bumpversion:file:pyproject.toml]
search = version = "{current_version}"
replace = version = "{new_version}"
[bumpversion:file:proxyproviders/version.py]
search = __version__ = "{current_version}"
replace = __version__ = "{new_version}"
[metadata]
name = proxyproviders
version = attr: proxyproviders.version.__version__
description = A unified interface for different proxy providers
long_description = file: README.md
long_description_content_type = text/markdown
author = David Teather
author_email = contact.davidteather@gmail.com
license = MIT
url = https://github.com/davidteather/proxyproviders
classifiers =
Programming Language :: Python :: 3
License :: OSI Approved :: MIT License
Operating System :: OS Independent
[options]
packages = find:
include_package_data = True
python_requires = >=3.9
[options.packages.find]
where = proxyproviders
[tool:pytest]
testpaths = tests
[coverage:run]
branch = True
source = proxyproviders