Update \setup.py to use setup.cfg

This commit is contained in:
2023-06-30 17:55:38 -04:00
parent 1ff0cc923b
commit c6191c3505
2 changed files with 44 additions and 47 deletions

39
setup.cfg Normal file
View File

@ -0,0 +1,39 @@
[metadata]
name = semver
author = RightBrain Networks
author_email = cloud@rightbrainnetworks.com
description = Automatic Semantic Versioner
long_description = file: README.md, license.txt
url = https://github.com/RightBrain-Networks/auto-semver
license = Apache2.0
keywords = Semantic, Version, Git, Auto-Versioning
classifiers =
Programming Language :: Python :: 3
License :: OSI Approved :: Apache Software License
# Development Status
Development Status :: 3 - Alpha
# Audience
Intended Audience :: Developers
Intended Audience :: System Administrators
Topic :: Software Development :: Build Tools
[options]
include_package_data = True
packages = find:
python_requires = >=3.7, <4
[options.packages.find]
exclude =
contrib*
docs*
tests*
[options.entry_points]
console_scripts =
semver = semver:main
semver_get_version = semver.get_version:main