-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
56 lines (49 loc) · 1.63 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
# -*- coding: utf-8 -*-
"""
bunqexport
"""
import io
import os
from setuptools import find_packages, setup
HERE = os.path.abspath(os.path.dirname(__file__))
with io.open(os.path.join(HERE, "README.md"), encoding="utf-8") as f:
LONG_DESCRIPTION = f.read()
with io.open(os.path.join(HERE, "requirements.txt"), encoding="utf-8") as f:
REQUIREMENTS = f.readlines()
with io.open(os.path.join(HERE, "requirements-dev.txt"), encoding="utf-8") as f:
REQUIREMENTSDEV = f.readlines()
setup(
name="bunqexport",
version="0.0.3",
description="Convert bunq payments to csv",
long_description=LONG_DESCRIPTION,
long_description_content_type="text/markdown",
url="https://github.com/stuertz/pybunqexport",
author="Jan Stürtz",
author_email="[email protected]",
license="gpl-3.0",
# See https://pypi.python.org/pypi?%3Aaction=list_classifiers
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: End Users/Desktop",
"Intended Audience :: Financial and Insurance Industry",
"Topic :: Office/Business :: Financial",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python :: 3.6",
],
python_requires=">=3.6",
keywords=(
"open-banking sepa bunq finance api payment csv lexware " "finanzmanager"
),
packages=find_packages(exclude=["tests"]),
install_requires=REQUIREMENTS,
extras_require={
"dev": REQUIREMENTSDEV,
},
entry_points={
"console_scripts": [
"bunqexport = bunqexport.export:main",
],
},
include_package_data=True,
)