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-08 20:22:14 +02:00
parent fc851900f0
commit 0edc49fdba

View File

@ -1,5 +1,3 @@
#!/usr/bin/env python
#
# WARNING
#
# THIS IS AN AUTOGENERATED FILE.
@ -12,9 +10,29 @@ from setuptools import setup
PACKAGE_NAME = 'fin_depo'
with open('README.md') as f:
readme = f.read()
PACKAGE_DESCRIPTION = """
# Financial Depository Fetchers.
Python library for automatic fetching of personal asset depo information.
Supports:
- **Kraken**: Uses their API
- **Kucoin**: Uses their API
- **Partisia Blockchain Account**: Uses a reader node to check the account
state.
- **Nordnet**: Through their
[API](https://www.nordnet.dk/externalapi/docs/api). Thanks to [Morten
Helmstedt](https://helmstedt.dk/) for sharing his [Nordnet
utilities](https://github.com/helmstedt/nordnet-utilities),
which helped a lot.
## TODO
- [ ] Investment Bank: Saxo Bank OpenAPI
- [ ] Personal Bank: Personal Bank Account (Open Banking) Maybe use AIIA?"""
PACKAGE_DESCRIPTION_SHORT='Python library for automatic fetching of personal asset depo information.'
def parse_version_file(text: str) -> str:
match = re.match(r'^__version__\s*=\s*(["\'])([\d\.]+)\1$', text)
@ -37,16 +55,6 @@ def read_requirements(path: str) -> list[str]:
return parse_requirements(f.read())
def determine_short_description(readme: str) -> str:
readme = re.sub(r'#+[^\n]*\n+', '', readme)
m = re.search(r'^\s*(\w+[\w\s,`+-]+\.)', readme)
try:
return m.group(1)
except AttributeError as err:
msg = f'Could not determine short description: {readme}'
raise Exception(msg) from err
REQUIREMENTS_MAIN = """
enforce-typing
python-kucoin
@ -63,8 +71,8 @@ pytest
setup(
name=PACKAGE_NAME,
version=version,
description=determine_short_description(readme),
long_description=readme,
description=PACKAGE_DESCRIPTION_SHORT,
long_description=PACKAGE_DESCRIPTION,
long_description_content_type='text/markdown',
author='Jmaa',
author_email='jonjmaa@gmail.com',