-
Notifications
You must be signed in to change notification settings - Fork 63
/
setup.py
27 lines (24 loc) · 966 Bytes
/
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
long_description = """
pyShipping provides connections to interface with shipping companies and to transport shipping related
information.
"""
from setuptools import setup, find_packages
from distutils.extension import Extension
import codecs
setup(name='pyShipping',
maintainer='Maximillian Dornseif',
maintainer_email='[email protected]',
url="https://github.com/hudora/pyShipping/",
version='1.9',
description='pyShipping - Shipping related Toolkit',
long_description=codecs.open('README.rst', "r", "utf-8").read(),
classifiers=['License :: OSI Approved :: BSD License',
'Intended Audience :: Developers',
'Programming Language :: Python'],
# download_url
zip_safe=False,
packages=find_packages(),
package_data={'': ['README.rst'], 'pyshipping': ['carriers/dpd/georoutetables/*']},
include_package_data=True,
# cmdclass = {'build_ext': build_ext}
)