File: setup.py

package info (click to toggle)
meater-python 0.0.8-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 120 kB
  • sloc: python: 130; makefile: 7
file content (23 lines) | stat: -rw-r--r-- 760 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
import setuptools

with open("README.md", "r") as fh:
    long_description = fh.read()

setuptools.setup(
    name="meater-python",
    version="0.0.8",
    author="Billy Stevenson",
    author_email="meater-api@billystevenson.co.uk",
    description="A wrapper for the Apption Labs Meater probe API v1",
    long_description=long_description,
    long_description_content_type="text/markdown",
    url="https://github.com/Sotolotl/meater-python",
    install_requires=["aiohttp<=4"],
    packages=setuptools.find_packages(),
    classifiers=[
        "Programming Language :: Python :: 3",
        "License :: OSI Approved :: Apache Software License",
        "Operating System :: OS Independent",
    ],
    python_requires='>=3.6',
)