summaryrefslogtreecommitdiff
path: root/setup.cfg
blob: 72967fa40ad9bf73bdabb939f129889d60feeb68 (plain)
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
[egg_info]
tag_build = .post
tag_date = 1

[aliases]
clean_egg_info = egg_info -RDb ''
release = clean_egg_info build_sphinx sdist bdist_wheel upload_docs
source = register sdist binary
binary = bdist_egg upload --show-response
test = pytest

[build_sphinx]
source-dir = docs/
build-dir = docs/build
all_files = 1

[upload_docs]
upload-dir = docs/build/html

[sdist]
formats = gztar zip

[wheel]
universal=1

[bumpversion]
current_version = 20.5
commit = True
tag = True
parse = (?P<major>\d+)\.(?P<minor>\d+)(\.(?P<patch>\d+))?
serialize=
  {major}.{minor}.{patch}
  {major}.{minor}

[bumpversion:file:setup.py]