1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
|
"""PyFlume setuptools for PyPi."""
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="PyFlume",
version="0.8.7",
author="ChrisMandich",
author_email="Chris@Mandich.net",
description="Package to integrate with Flume Sensor",
long_description_content_type="text/markdown",
long_description=long_description,
url="https://github.com/ChrisMandich/PyFlume",
packages=setuptools.find_packages(exclude=["tests", "tests.*"]),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
install_requires=[
"pyjwt",
"ratelimit",
"requests",
'backports.zoneinfo; python_version<"3.9"',
],
)
|