python-inema/setup.py

33 lines
1.1 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',
2021-05-01 10:48:44 +00:00
version='0.8.4',
description='A Python interface to the Deutsche Post Internetmarke and Warenpost International Online Franking',
2016-07-13 23:32:12 +00:00
long_description=open('README.rst').read(),
author='Harald Welte',
author_email='hwelte@sysmocom.de',
url='https://git.sysmocom.de/odoo/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/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
)