forked from readthedocs/readthedocs.org
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
48 lines (44 loc) · 1.16 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
48
[metadata]
name = readthedocs
version = 9.3.1
license = MIT
description = Read the Docs builds and hosts documentation
author = Read the Docs, Inc
author_email = [email protected]
url = http://readthedocs.org
classifiers =
Development Status :: 5 - Production/Stable
Environment :: Web Environment
Intended Audience :: Developers
License :: OSI Approved :: MIT License
Operating System :: OS Independent
Programming Language :: Python
Programming Language :: Python :: 2.7
Programming Language :: Python :: 3.4
Programming Language :: Python :: 3.5
Programming Language :: Python :: 3.6
Framework :: Django
[options]
packages = find:
include_package_data = True
zip_safe = False
[tool:release]
github_owner = readthedocs
github_repo = readthedocs.org
[bumpver]
current_version = "9.3.1"
version_pattern = "MAJOR.MINOR.PATCH[TAGNUM]"
commit_message = "Bump version {old_version} -> {new_version}"
commit = False
tag = False
push = False
[bumpver:file_patterns]
setup.cfg =
version = {version}
current_version = "{version}"
package.json =
"version": "{version}",
docs/conf.py =
version = "{version}"
readthedocs/__init__.py =
__version__ = "{version}"