-
Notifications
You must be signed in to change notification settings - Fork 59
/
Copy pathsetup.cfg
27 lines (25 loc) · 839 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
26
27
[metadata]
name = CurrencyConverter
description = A currency converter using the European Central Bank data.
long_description = file: README.rst
long_description_content_type = text/x-rst
url = https://github.com/alexprengere/currencyconverter
author = Alex Prengère
author_email = [email protected]
license_files = LICENSE
classifiers =
Development Status :: 5 - Production/Stable
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: Implementation :: CPython
Programming Language :: Python :: Implementation :: PyPy
[options]
zip_safe = False
include_package_data = True
packages = find:
python_requires = >=3.9
setup_requires =
setuptools_scm
[options.entry_points]
console_scripts =
currency_converter = currency_converter.__main__:main