42 lines
1.1 KiB
INI
42 lines
1.1 KiB
INI
|
[metadata]
|
||
|
name = piggybank
|
||
|
version = attr: piggybank.__version__
|
||
|
description =
|
||
|
Keep track of your piggy bank by writting down quantity of coins you put,
|
||
|
not just sums. So you know how much coins you have in there.
|
||
|
long_description = file: README.md
|
||
|
long_description_content_type = text/markdown
|
||
|
author = attr: piggybank.__author__
|
||
|
author_email = attr: piggybank.__email__
|
||
|
url = https://aravs.ru
|
||
|
keywords =
|
||
|
coins
|
||
|
piggy bank
|
||
|
coin box
|
||
|
savings
|
||
|
license = WTFPL 2.0
|
||
|
license_file = COPYING
|
||
|
classifiers =
|
||
|
Development Status :: 5 - Production/Stable
|
||
|
Environment :: Console
|
||
|
License :: Other/Proprietary License
|
||
|
Natural Language :: English
|
||
|
Programming Language :: Python :: 3.6
|
||
|
Programming Language :: Python :: 3.7
|
||
|
Topic :: Office/Business :: Financial :: Accounting
|
||
|
|
||
|
[options]
|
||
|
zip_safe = True
|
||
|
python_requires = >=3.6
|
||
|
include_package_data = True
|
||
|
packages = find:
|
||
|
|
||
|
[options.package_data]
|
||
|
* = COPYING, README.md
|
||
|
|
||
|
[options.entry_points]
|
||
|
console_scripts =
|
||
|
piggybank-put = piggybank.cli.put:main
|
||
|
piggybank-take = piggybank.cli.take:main
|
||
|
piggybank-show = piggybank.cli.show:main
|