-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.cfg
45 lines (41 loc) · 1.26 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]
name = sphinx-multiproject
version = 1.0.0
author = Read the Docs, Inc
author_email = [email protected]
description = Build multiple Sphinx projects from a single repository on Read the Docs
long_description = file: README.md
long_description_content_type = text/markdown
url = https://sphinx-multiproject.readthedocs.io/
project_urls =
Source = https://github.com/readthedocs/sphinx-multiproject/
Bug Tracker = https://github.com/readthedocs/sphinx-multiproject/issues
classifiers =
Programming Language :: Python :: 3
License :: OSI Approved :: MIT License
Operating System :: OS Independent
Framework :: Sphinx
Framework :: Sphinx :: Extension
Topic :: Documentation :: Sphinx
Topic :: Software Development :: Documentation
[options]
packages = find:
python_requires = >=3.7
[options.packages.find]
include = multiproject
[bumpver]
current_version = "1.0.0"
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}"
docs/conf.py =
release = "{version}"
multiproject/extension.py =
__version__ = "{version}"
multiproject/__init__.py =
__version__ = "{version}"