1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
|
"""Setup for TechnoVE in Pypi."""
from setuptools import setup
setup(
name="python-technove",
version="1.0.0",
description="TechnoVE local station API library",
url="https://github.com/moustachauve/pytechnove",
author="Christophe Gagnier",
license="GNU General Public License v3 (GPLv3)",
packages=["python-technove"],
install_requires=["httpx"],
classifiers=[
"Development Status :: 1 - Planning",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT license ",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3.9",
"Topic :: Software Development :: Libraries",
],
)
|