python-inema/setup.py

32 lines
1.0 KiB
Python
Raw Normal View History

2016-07-13 23:32:12 +00:00
from setuptools import find_packages, setup
from inema import __version__
2016-07-13 23:32:12 +00:00
install_requires = [
'zeep >= 0.12.0',
'pytz'
2016-07-13 23:32:12 +00:00
]
setup(
name='inema',
version=__version__,
2016-07-13 23:32:12 +00:00
description='A Python interface to the Deutsche Post Internetmarke Online Franking',
long_description=open('README.rst').read(),
author='Harald Welte',
author_email='hwelte@sysmocom.de',
url='http://git.sysmocom.de/python-inema/',
2016-07-24 10:49:58 +00:00
packages=['inema'],
2016-07-13 23:32:12 +00:00
install_requires=install_requires,
2016-11-23 10:52:27 +00:00
package_data={'inema': ['data/products.json', 'data/formats.json']},
2016-07-13 23:32:12 +00:00
license='AGPLv3',
classifiers=[
'Development Status :: 5 - Production/Stable',
'License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)',
2016-07-13 23:32:12 +00:00
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Topic :: Office/Business',
2016-07-13 23:32:12 +00:00
],
2017-06-24 11:06:03 +00:00
entry_points={
'console_scripts': [ 'frank = inema.frank:main' ]
},
2016-07-13 23:32:12 +00:00
)