Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Latest commit

 

History

History
History
50 lines (36 loc) · 1.51 KB

File metadata and controls

50 lines (36 loc) · 1.51 KB
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
from setuptools import setup, find_packages # Always prefer setuptools over distutils
from codecs import open # To use a consistent encoding
from os import path
here = path.abspath(path.dirname(__file__))
# Get the long description from the relevant file
long_description = """\
This is a python package for using the DHL webservice.
It allows developers to easily connect to DHL services and make requests.
The package creates SOAP requests using the suds-jurko package (https://pypi.python.org/pypi/suds-jurko/0.6)
to create shipments, to schedule a pickup and possibly to delete a created shipment.
It also provides the ability to save the shipping labels.
"""
setup(
name='python-dhl',
version='1.0.0.dev15',
description='Python package for DHL webservice',
long_description=long_description,
url='https://github.com/benqo/python-dhl',
author='Benjamin Polovic',
author_email='benkoman@gmail.com',
license='MIT',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
# 'Programming Language :: Python :: 2',
#'Programming Language :: Python :: 2.6',
#'Programming Language :: Python :: 2.7',
#'Programming Language :: Python :: 3',
#'Programming Language :: Python :: 3.2',
#'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
],
packages=['dhl', 'dhl/resources'],
install_requires=['suds-jurko'],
)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.