-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
61 lines (57 loc) · 1.78 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
[metadata]
name = autorelease
version = 0.5.1.dev0
# version should end in .dev0 if this isn't to be released
short_description = Tools to keep the release process clean.
description = Tools to keep the release process clean.
long_description = file: README.md
long_description_content_type = text/markdown
author = David W.H. Swenson
author_email = [email protected]
license = MIT
url = https://github.com/dwhswenson/autorelease
classifiers =
Development Status :: 4 - Beta
Environment :: Console
Environment :: MacOS X
Environment :: Win32 (MS Windows)
Intended Audience :: Developers
License :: OSI Approved :: MIT License
Natural Language :: English
Operating System :: MacOS :: MacOS X
Operating System :: Microsoft :: Windows
Operating System :: POSIX
Programming Language :: Python :: 2.7
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Topic :: Software Development :: Testing
[options]
python_requires = >=3.7
install_requires =
packaging
pyyaml
gitpython
future
requests
python-dateutil
click
setuptools
packages = find:
scripts =
script_stages/deploy-pypi
script_stages/install-testpypi
script_stages/test-testpypi
[options.package_data]
autorelease =
- ../gh_actions_stages/*
[options.entry_points]
console_scripts =
autorelease-release = autorelease.scripts.release:main
write-release-notes = autorelease.scripts.write_release_notes:main
bump-dev-version = autorelease.scripts.bump_dev_version:main
pypi-max-version = autorelease.scripts.bump_dev_version:get_max
wait-for-testpypi = autorelease.scripts.bump_dev_version:wait_for_max
autorelease = autorelease.scripts.cli:cli
[bdist_wheel]
universal=1