-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (30 loc) · 1.19 KB
/
setup.py
File metadata and controls
32 lines (30 loc) · 1.19 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
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-dhlparcel-api',
packages=['dhlparcel', 'dhlparcel.models', 'dhlparcel.cache', 'dhlparcel.endpoints'],
version = '0.0.3',
license='GPL-3.0-or-later',
description = 'Wrapper for the DHL Parcel API endpoints',
long_description=long_description,
long_description_content_type='text/markdown',
author = 'Alexander Schillemans',
author_email = 'alexander.schillemans@hotmail.com',
url = 'https://github.com/alexander-schillemans/python-dhlparcel-api',
download_url = 'https://github.com/alexander-schillemans/python-dhlparcel-api/archive/refs/tags/0.0.3.tar.gz',
keywords = ['dhl', 'dhl parcel'],
install_requires=[
'requests'
],
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',
],
)