
| Current Path : /home/cgabriel/20_dev/12_procpy/konto/ |
Linux ift1.ift-informatik.de 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64 |
| Current File : //home/cgabriel/20_dev/12_procpy/konto/setup.py |
# Generate wheel file:
#
# python3 -m pip install setuptools wheel
# python3 setup.py bdist_wheel
from setuptools import setup
setup (
name = "konto",
version = "0.0.1",
packages = ['.konto'],
author = "Christian Martin Gabriel",
author_email = "christian.gabriel@ift-informatik.de",
url = "https://github.com/cgabr/konto",
description = "A Python Library for Accounting",
python_requires = '>=3.6',
long_description_content_type = "text/markdown",
long_description = open("README.md").read()
)