forked from grindsa/dkb-robo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
30 lines (30 loc) · 1.02 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
from setuptools import setup
from glob import glob
from dkb_robo.version import __version__
# exec(open('dkb_robo/version.py').read())
setup(name='dkb_robo',
version=__version__,
description='library to access the internet banking area of "Deutsche Kreditbank" to get account information and transactions.',
url='https://github.com/grindsa/dkb-robo',
author='grindsa',
author_email='[email protected]',
license='GPL',
packages=['dkb_robo'],
platforms='any',
install_requires=[
'mechanicalsoup',
'bs4',
'html5lib',
'six'
],
classifiers = [
'Programming Language :: Python',
'Development Status :: 4 - Beta',
'Natural Language :: German',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Operating System :: OS Independent',
'Topic :: Software Development :: Libraries :: Python Modules'
],
zip_safe=False,
test_suite="test")