26 lines
758 B
INI
26 lines
758 B
INI
|
[metadata]
|
||
|
name = example_pkg
|
||
|
version = 0.1.0
|
||
|
author = Lukáš Kucharczyk
|
||
|
author_email = lukas@kucharczyk.xyz
|
||
|
description = A small example package
|
||
|
long_description = file: README.md
|
||
|
long_description_content_type = text/markdown
|
||
|
url = https://git.kucharczyk.xyz/templates/python
|
||
|
project_urls =
|
||
|
Bug Tracker = https://git.kucharczyk.xyz/templates/python/issues
|
||
|
classifiers =
|
||
|
Programming Language :: Python :: 3
|
||
|
Environment :: Console
|
||
|
Intended Audience :: End Users/Desktop
|
||
|
License :: OSI Approved :: GNU General Public License (GPL)
|
||
|
Operating System :: OS Independent
|
||
|
Topic :: Utilities
|
||
|
|
||
|
[options]
|
||
|
packages = example_pkg
|
||
|
python_requires = >=3.6
|
||
|
|
||
|
[options.entry_points]
|
||
|
console_scripts =
|
||
|
example-pkg = example_pkg.example:hello
|