first published version

get_list_of_videos
Mark Cotton 2023-07-20 09:43:50 -06:00
parent fe650b4837
commit b7b68d71e0
3 changed files with 12 additions and 18 deletions

1
.gitignore vendored
View File

@ -9,3 +9,4 @@ my_settings.py
.ipynb_checkpoints/*
flask_session/
src/EagleEyev3.egg-info/
dist/

View File

@ -1,25 +1,14 @@
[build-system]
requires = ["setuptools>=61.0.0", "wheel"]
build-backend = "setuptools.build_meta"
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "EagleEyev3"
version = "0.0.4"
description = "Helper library for Eagle Eye Networks API v3"
authors = [{name = "mcotton", email = "mcotton@mcottondesign.com"}]
readme = "README.md"
authors = [{ name = "Mark Cotton", email = "mcotton@een.com" }]
license = { file = "LICENSE" }
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
]
keywords = ["EagleEye"]
dependencies = [
"pytz",
"requests",
]
requires-python = ">=3.6"
license = {file = "LICENSE"}
classifiers = ["License :: OSI Approved :: MIT License"]
dynamic = ["version", "description"]
[project.urls]
Homepage = "https://mcotton.space"
Home = "https://mcottondesign.com"

View File

@ -1,3 +1,7 @@
""" Python client for Eagle Eye Networks APIv3 """
__version__ = "0.0.4"
import json
import logging
import requests