forked from MoritzR/fints2ledger
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
35 lines (31 loc) · 1.07 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
from setuptools import setup
def readme():
with open('README.md') as f:
return f.read()
setup(
name='fints2ledger',
version='0.8.0',
description='A tool for downloading transactions from FinTS banking APIs and sorting them into a ledger journal.',
long_description=readme(),
long_description_content_type='text/markdown',
url='https://github.com/MoritzR/fints2ledger',
author='Moritz Rumpf',
author_email='[email protected]',
license='MIT',
python_requires='>=3.7.0',
entry_points={
'console_scripts': ['fints2ledger=fints2ledger.main:main'],
},
install_requires=['mt-940>=4.11,<5', 'fints>=3,<4', 'pyyaml>=6'],
setup_requires=['green'],
packages=['fints2ledger'],
zip_safe=False,
classifiers=[
'Development Status :: 3 - Alpha',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
],
)