forked from ACCLAB/DABEST-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.cfg
More file actions
39 lines (37 loc) · 1.11 KB
/
setup.cfg
File metadata and controls
39 lines (37 loc) · 1.11 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
[bdist_wheel]
# This flag says that the code is written to work on both Python 2 and Python
# 3. If at all possible, it is good practice to do this. If you cannot, you
# will need to generate wheels for each Python version that you support.
universal=1
[bumpver]
current_version = "2023.02.14"
version_pattern = "YYYY.0M.0D"
commit_message = "bump version {old_version} -> {new_version}"
commit = True
tag = True
push = True
[bumpver:file_patterns]
setup.cfg =
current_version = "{version}"
setup.py =
version='{version}'
dabest/__init__.py =
__version__ = "{version}"
LICENSE =
Copyright (c) 2016-YYYY Joses W. Ho
docs/source/conf.py =
2016-YYYY, Joses W. Ho
# The short X.Y version.
version = 'YYYY.0M'
# The full version, including alpha/beta/rc tags.
release = 'YYYY.0M.0D'
docs/source/about.rst =
Copyright (c) 2016-YYYY, Joses W. Ho
docs/source/minimetadelta.rst =
DABEST v{version}
docs/source/proportion-plot.rst =
DABEST v{version}
docs/source/repeatedmeasures.rst =
DABEST v{version}
docs/source/tutorial.rst =
DABEST v{version}