forked from jpmorganchase/jupyter-fs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
65 lines (53 loc) · 1.14 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
[bumpversion]
current_version = 0.4.0alpha0
commit = True
tag = True
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)((?P<release>[a-z]+)(?P<build>\d+))?
serialize =
{major}.{minor}.{patch}{release}{build}
{major}.{minor}.{patch}
[bdist_wheel]
universal = 1
[flake8]
extend-ignore = E302
max-line-length = 200
[manifix]
known-excludes =
.git*
.git/**/*
.travis.yml
**/node_modules/**/*
**/__py_cache__/**/*
**/*.pyc
package-lock.json
lib
build
dist
Untitled*.ipynb
[metadata]
description_file = README.md
[pycodestyle]
ignore = E302
max-line-length = 200
[tool:pytest]
junit_family = xunit2
[bumpversion:part:release]
optional_value = final
values =
alpha
rc
final
[bumpversion:part:build]
[bumpversion:file:jupyterfs/_version.py]
[bumpversion:file:setup.py]
search = version="{current_version}"
replace = version="{new_version}"
[bumpversion:file:docs/conf.py]
search = version = "{current_version}"
replace = version = "{new_version}"
[bumpversion:file:js/package.json]
search = "version": "{current_version}"
replace = "version": "{new_version}"
serialize =
{major}.{minor}.{patch}-{release}.{build}
{major}.{minor}.{patch}