40 lines
1.2 KiB
Python
Executable File
40 lines
1.2 KiB
Python
Executable File
#!/usr/bin/env python
|
|
from setuptools import setup
|
|
|
|
|
|
with open("README.rst") as fh:
|
|
long_description = fh.read()
|
|
|
|
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=[
|
|
"zeep~=3.4.0",
|
|
],
|
|
tests_require=[],
|
|
extras_require={},
|
|
entry_points={},
|
|
package_dir={},
|
|
packages=["sympasoap"],
|
|
include_package_data=True,
|
|
license="GPLv3",
|
|
classifiers=[
|
|
"Development Status :: 5 - Production/Stable",
|
|
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
|
|
"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,
|
|
)
|