1
0

🤖 Repository layout updated to latest version

This commit was automatically generated by a script: https://gitfub.space/Jmaa/python-omni
This commit is contained in:
Takunomi Automaticus, The 2nd 2024-07-09 23:59:54 +02:00
parent 0113e85f79
commit 4936b91d18
3 changed files with 25 additions and 6 deletions

3
LICENSE Normal file
View File

@ -0,0 +1,3 @@
Copyright (c) 2024 Jon Michael Aanes
All rights reserved.

View File

@ -5,3 +5,12 @@
# Finance Definitions.
Python library defining base types for financial processing.
# License
```
Copyright (c) 2024 Jon Michael Aanes
All rights reserved.
```

View File

@ -13,7 +13,16 @@ PACKAGE_NAME = 'fin_defs'
PACKAGE_DESCRIPTION = """
# Finance Definitions.
Python library defining base types for financial processing."""
Python library defining base types for financial processing.
# License
```
Copyright (c) 2024 Jon Michael Aanes
All rights reserved.
```"""
PACKAGE_DESCRIPTION_SHORT='Python library defining base types for financial processing.'
@ -39,12 +48,10 @@ def read_requirements(path: str) -> list[str]:
REQUIREMENTS_MAIN = """
enforce-typing
"""
enforce-typing"""
REQUIREMENTS_TEST = """
pytest
"""
pytest"""
setup(
@ -53,7 +60,7 @@ setup(
description=PACKAGE_DESCRIPTION_SHORT,
long_description=PACKAGE_DESCRIPTION,
long_description_content_type='text/markdown',
author='Jmaa',
author='Jon Michael Aanes',
author_email='jonjmaa@gmail.com',
url='https://gitfub.space/Jmaa/' + PACKAGE_NAME,
packages=[PACKAGE_NAME],