py-sympa-soap/setup.py

40 lines
1.2 KiB
Python
Raw Permalink Normal View History

2020-10-08 21:07:35 +00:00
#!/usr/bin/env python
2020-10-08 15:20:28 +00:00
from setuptools import setup
with open("README.rst") as fh:
2020-10-08 21:06:34 +00:00
long_description = fh.read()
2020-10-08 15:20:28 +00:00
setup(
name="sympasoap",
version="1.0.0",
description="A simple Python Sympa API",
long_description=long_description,
author="Yohann D'ANELLO",
author_email="yohann.danello@animath.fr",
url="https://gitlab.com/animath/si/py-sympa-soap",
python_requires=">=3.6",
install_requires=[
2020-10-08 15:32:34 +00:00
"zeep~=3.4.0",
2020-10-08 15:20:28 +00:00
],
tests_require=[],
extras_require={},
entry_points={},
2020-10-08 21:18:15 +00:00
package_dir={},
2020-10-08 15:20:28 +00:00
packages=["sympasoap"],
include_package_data=True,
2020-10-08 21:03:31 +00:00
license="GPLv3",
2020-10-08 15:20:28 +00:00
classifiers=[
2020-10-08 21:02:57 +00:00
"Development Status :: 5 - Production/Stable",
2020-10-08 21:03:31 +00:00
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
2020-10-08 15:20:28 +00:00
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
],
zip_safe=False,
)