forked from keisentraut/python-comdirect-api
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
49 lines (46 loc) · 1.57 KB
/
setup.py
File metadata and controls
49 lines (46 loc) · 1.57 KB
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
from setuptools import setup
from os import path
here = path.abspath(path.dirname(__file__))
# Get the long description from the README file
with open(path.join(here, "README.md"), encoding="utf-8") as f:
long_description = f.read()
setup(
name="comdirect_api",
version="0.1",
description="Python module for comdirect REST api",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/keisentraut/python-comdirect-api",
author="Klaus Eisentraut",
author_email="klaus-python-comdirect-api@hohenpoelz.de",
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Topic :: Software Development :: Build Tools",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
],
keywords="comdirect rest api",
packages=["comdirect_api"],
python_requires=">=3.6",
install_requires=[
"json",
"datetime",
"requests",
"uuid",
"base64",
"io",
"pillow",
"time",
"decimal",
],
project_urls={
"Bug Reports": "https://github.com/keisentraut/python-comdirect-api/issues",
# 'Funding': 'https://donate.pypi.org',
# 'Say Thanks!': 'http://saythanks.io/to/example',
"Source": "https://github.com/keisentraut/python-comdirect-api/",
},
)