-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.cfg
80 lines (68 loc) · 1.99 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
[bumpversion]
commit = True
current_version = 0.1.3
tag = True
tag_name = {new_version}
[bumpversion:file:setuptools_twine/__init__.py]
[bumpversion:file:test_project/setuptools_twine_test.py]
[metadata]
name = setuptools-twine
version = attr: setuptools_twine.__version__
author = Nine More Minutes, Inc.
author_email = [email protected]
description = Adds twine_check and twine_upload commands to setuptools.
long_description = file: README.rst
long_description_content_type = text/x-rst
keywords = setuptools, twine
license = BSD
url = https://github.com/cchurch/setuptools-twine
project_urls =
Documentation = https://github.com/cchurch/setuptools-twine/blob/master/README.rst
Source = https://github.com/cchurch/setuptools-twine
Tracker = https://github.com/cchurch/setuptools-twine/issues
classifiers =
Development Status :: 3 - Alpha
Environment :: Console
Framework :: Setuptools Plugin
Intended Audience :: Developers
License :: OSI Approved :: BSD License
Operating System :: OS Independent
Programming Language :: Python
Programming Language :: Python :: 2.7
Programming Language :: Python :: 3
Programming Language :: Python :: 3.5
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Topic :: Software Development :: Build Tools
[options]
packages = setuptools_twine
zip_safe = False
install_requires =
setuptools
twine
[options.entry_points]
distutils.commands =
twine_check = setuptools_twine:TwineCheckCommand
twine_upload = setuptools_twine:TwineUploadCommand
[check]
metadata = True
restructuredtext = True
strict = True
[clean]
all = True
[egg_info]
tag_build = .dev
[bdist_wheel]
universal = 1
[aliases]
dev_build = clean egg_info sdist bdist_wheel twine_check
release_build = clean egg_info -b "" sdist bdist_wheel twine_check
pypi_upload = release_build twine_upload
[pycodestyle]
ignore = E501
exclude = .git,build,dist
[flake8]
ignore = E501
exclude = .git,build,dist