This repository has been archived by the owner on Dec 26, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
executable file
·45 lines (44 loc) · 1.54 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
35
36
37
38
39
40
41
42
43
44
45
from setuptools import setup, find_packages
from postnl.locations import __version__
setup(
# package name in pypi
name='postnl-locations',
# extract version from module.
version=__version__,
description="A Python wrapper for using the PostNL locations SOAP API",
long_description=open('README.rst').read(),
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: Unix',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Topic :: Software Development :: Libraries',
],
keywords='postnl locations pickuppoints',
author='Martijn Jacobs',
author_email='martijn@devopsconsulting.nl',
url='https://github.com/maerteijn/python-postnl-locations',
license='BSD',
# include all packages in the egg, except the tests
packages=find_packages(
exclude=['ez_setup', '*tests']),
# for avoiding conflict have one namespace for all related eggs.
namespace_packages=['postnl'],
# include non python files
include_package_data=True,
zip_safe=False,
# specify dependencies
install_requires=[
"suds-jurko",
],
# mark test target to require extras.
extras_require={
'test': ['nose', 'mock', 'coverage']
},
)