forked from Arisophy/django-compositepk-model
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
54 lines (47 loc) · 1.17 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
[bumpversion]
current_version = 2.0.0.dev1
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\.?)(?P<release>[a-z]*)(?P<relver>\d*)
serialize =
{major}.{minor}.{patch}.{release}{relver}
{major}.{minor}.{patch}
commit = True
tag = True
sign_tags = True
tag_name = {new_version}
message = Release {new_version}
[bumpversion:part:release]
optional_value = gamma
values =
dev
a
b
rc
gamma
[bumpversion:file:cpkmodel/__init__.py]
[metadata]
name = django-compositepk-model
version = attr: cpkmodel.__version__
author = Arisophy
description = Extended Django Model class with composite-primary-key support
long_description = file: README.md
long_description_content_type = text/x-markdown
license = MIT
license_file = LICENSE
classifiers =
License :: OSI Approved :: MIT License
Development Status :: Development Status :: 5 - Production/Stable
Framework :: Django
Programming Language :: Python
Programming Language :: Python :: 3
[options]
include_package_data = True
packages = cpkmodel
python_requires = >=3.6
zip_safe = False
[options.package_data]
* = *.txt, *.rst
cpkmodel = *.html *.png *.gif *js *jpg *jpeg *svg *py *mo *po
[sdist]
formats = zip
[bdist_wheel]
universal = 1