# File generated by [Setupinit](https://github.com/pyrustic/setupinit).

[metadata]
name = {project_name}
version = file: VERSION
url = https://github.com/pyrustic/setupinit
author = NO-NAME-PROVIDED
author_email = NO-EMAIL-PROVIDED
maintainer = NO-NAME-PROVIDED
maintainer_email = NO-EMAIL-PROVIDED
description = NO-DESCRIPTION-PROVIDED
long_description = file: README.md
long_description_content_type = text/markdown
license = MIT
# https://pypi.org/classifiers/
# Development Status :: 3 - Alpha
# Development Status :: 4 - Beta
# Development Status :: 5 - Production/Stable
classifiers =
    Programming Language :: Python
    Programming Language :: Python :: 3
    License :: OSI Approved :: MIT License
    Operating System :: OS Independent
    Intended Audience :: Developers
    Development Status :: 4 - Beta
keywords =

[options]
python_requires = >=3.5
package_dir =
    = src
packages = find:
include_package_data = true
zip_safe = false
install_requires =

[options.packages.find]
# https://github.com/pypa/setuptools/issues/1524
where = src

[options.entry_points]
console_scripts =
    {pkg_name} = {pkg_name}.__main__:main
