python-inema/setup.py

36 lines
1.3 KiB
Python
Raw Normal View History

2016-07-13 23:32:12 +00:00
from setuptools import find_packages, setup
install_requires = [
'zeep >= 0.12.0',
'pytz',
'setuptools' # i.e. provides pkg_resources
2016-07-13 23:32:12 +00:00
]
setup(
name='inema',
version='0.8.3',
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,
package_data={'inema': ['data/products.json',
'data/products-2020-01-01.json',
'data/products-2020-07-01.json',
'data/products-2021-01-01.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
)