-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathsetup.cfg
25 lines (22 loc) · 893 Bytes
/
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
[metadata]
name = gha-python-packaging-demo
description = Demo of a simple way to use GitHub Actions to build your Python package, bump the version number, and publish it to GitHub releases and PyPI.org all with a single click of a button in the web interface.
long_description_content_type = text/markdown
url = https://github.com/seanh/gha-python-packaging-demo
project_urls =
Bug Tracker = https://github.com/seanh/gha-python-packaging-demo/issues
Changelog = https://github.com/seanh/gha-python-packaging-demo/releases
classifiers =
Programming Language :: Python :: 3
License :: OSI Approved :: BSD License
Intended Audience :: Developers
[options]
package_dir =
= src
packages = find:
python_requires = >=3.6
[options.packages.find]
where = src
[options.entry_points]
console_scripts =
gha_python_packaging_demo = gha_python_packaging_demo.app:entry_point