File: setup.py

package info (click to toggle)
python-technove 2.0.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 408 kB
  • sloc: python: 653; sh: 5; makefile: 3
file content (23 lines) | stat: -rw-r--r-- 772 bytes parent folder | download
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",
    ],
)