forked from alexander-schillemans/python-exact-online
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
34 lines (32 loc) · 1.29 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
from setuptools import setup
# read the contents of README file
from os import path
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(
name = 'python-exact-online',
packages=['exactonline', 'exactonline.models', 'exactonline.constants', 'exactonline.cache', 'exactonline.endpoints'],
version = '0.3.2',
license='GPL-3.0-or-later',
description = 'Basic wrapper for the Exact Online REST API (v1)',
long_description=long_description,
long_description_content_type='text/markdown',
author = 'Alexander Schillemans',
author_email = 'alexander.schillemans@lhs.global',
url = 'https://github.com/alexanderlhsglobal/python-exact-online',
download_url = 'https://github.com/alexanderlhsglobal/python-exact-online/archive/refs/tags/0.3.2.tar.gz',
keywords = ['exact', 'exact online', 'api'],
install_requires=[
'requests',
'oauthlib',
'requests_oauthlib',
],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Programming Language :: Python :: 3.6',
],
)