forked from pretix/pretix-banktool
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
33 lines (28 loc) · 918 Bytes
/
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
import os
from setuptools import find_packages, setup
from pretix_banktool import __version__
try:
with open(os.path.join(os.path.dirname(__file__), 'README.rst'), encoding='utf-8') as f:
long_description = f.read()
except:
long_description = ''
setup(
name='pretix-banktool',
version=__version__,
description='Command-line client for pretix that allows to synchronize bank transaction statements to pretix',
long_description=long_description,
url='https://github.com/pretix/pretix-banktool',
author='Raphael Michel',
author_email='[email protected]',
install_requires=[
'click==6.*',
'fints>=3.0.0',
'requests',
'mt-940>=4.12.0',
],
packages=find_packages(exclude=['tests', 'tests.*']),
include_package_data=True,
entry_points={
'console_scripts': ['pretix-banktool=pretix_banktool.main:main'],
},
)