2019-12-25 23:08:20 +04:00
|
|
|
[metadata]
|
2020-06-05 04:20:47 +04:00
|
|
|
# __author__
|
2019-12-25 23:08:20 +04:00
|
|
|
name = piggybank
|
|
|
|
version = attr: piggybank.__version__
|
2020-06-05 03:50:21 +04:00
|
|
|
description = Keep track of your piggy bank
|
2020-06-05 04:20:47 +04:00
|
|
|
author = Alexander "Arav" Andreev
|
|
|
|
author_email = me@arav.top
|
2020-05-19 02:13:36 +04:00
|
|
|
url = https://arav.top
|
2020-06-05 04:20:47 +04:00
|
|
|
long_description = file: README.md
|
|
|
|
long_description_content_type = text/markdown
|
2019-12-25 23:08:20 +04:00
|
|
|
keywords =
|
2020-06-05 03:50:21 +04:00
|
|
|
coin box
|
2019-12-25 23:08:20 +04:00
|
|
|
coins
|
|
|
|
piggy bank
|
|
|
|
savings
|
2020-06-30 23:45:17 +04:00
|
|
|
license = MIT
|
2019-12-25 23:08:20 +04:00
|
|
|
license_file = COPYING
|
2020-06-05 03:50:21 +04:00
|
|
|
platforms = any
|
2019-12-25 23:08:20 +04:00
|
|
|
classifiers =
|
|
|
|
Development Status :: 5 - Production/Stable
|
|
|
|
Environment :: Console
|
2020-06-05 03:50:21 +04:00
|
|
|
Intended Audience :: End Users/Desktop
|
2020-06-30 23:45:17 +04:00
|
|
|
License :: OSI Approved :: MIT License
|
2019-12-25 23:08:20 +04:00
|
|
|
Natural Language :: English
|
2020-06-05 03:50:21 +04:00
|
|
|
Operating System :: OS Independent
|
|
|
|
Programming Language :: Python
|
|
|
|
Programming Language :: Python :: 3
|
|
|
|
Programming Language :: Python :: 3 :: Only
|
2019-12-25 23:08:20 +04:00
|
|
|
Programming Language :: Python :: 3.6
|
|
|
|
Programming Language :: Python :: 3.7
|
2020-06-05 03:50:21 +04:00
|
|
|
Programming Language :: Python :: 3.8
|
|
|
|
Programming Language :: Python :: 3.9
|
2019-12-25 23:08:20 +04:00
|
|
|
Topic :: Office/Business :: Financial :: Accounting
|
|
|
|
|
|
|
|
[options]
|
|
|
|
include_package_data = True
|
2020-06-05 03:50:21 +04:00
|
|
|
setup_requires =
|
|
|
|
setuptools
|
2019-12-25 23:08:20 +04:00
|
|
|
packages = find:
|
2020-06-05 03:50:21 +04:00
|
|
|
python_requires = >=3.6
|
|
|
|
zip_safe = False
|
2019-12-25 23:08:20 +04:00
|
|
|
|
|
|
|
[options.package_data]
|
|
|
|
* = COPYING, README.md
|
|
|
|
|
2020-06-05 03:50:21 +04:00
|
|
|
[sdist]
|
|
|
|
formats = gztar
|
|
|
|
|
2019-12-25 23:08:20 +04:00
|
|
|
[options.entry_points]
|
|
|
|
console_scripts =
|
2020-07-07 02:28:32 +04:00
|
|
|
piggybank = piggybank.__main__:main
|