From b7b68d71e07c81ef40815bf8f9bf4481c10f0844 Mon Sep 17 00:00:00 2001 From: Mark Cotton Date: Thu, 20 Jul 2023 09:43:50 -0600 Subject: [PATCH] first published version --- .gitignore | 1 + pyproject.toml | 25 +++++++------------------ src/EagleEyev3/__init__.py | 4 ++++ 3 files changed, 12 insertions(+), 18 deletions(-) diff --git a/.gitignore b/.gitignore index 97bc974..1587c8e 100644 --- a/.gitignore +++ b/.gitignore @@ -9,3 +9,4 @@ my_settings.py .ipynb_checkpoints/* flask_session/ src/EagleEyev3.egg-info/ +dist/ diff --git a/pyproject.toml b/pyproject.toml index 08ccb51..8480e7c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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" diff --git a/src/EagleEyev3/__init__.py b/src/EagleEyev3/__init__.py index f8fc1a6..f8be291 100644 --- a/src/EagleEyev3/__init__.py +++ b/src/EagleEyev3/__init__.py @@ -1,3 +1,7 @@ +""" Python client for Eagle Eye Networks APIv3 """ +__version__ = "0.0.4" + + import json import logging import requests