Skip to content

Commit

Permalink
Create pyproject.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
RyanLua authored Jul 19, 2024
1 parent dadfa37 commit fa39963
Showing 1 changed file with 37 additions and 0 deletions.
37 changes: 37 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"

[project]
name = "instawebhooks"
version = "0.0.1"
dependencies = [
"requests",
"instaloader",
]
authors = [
{ name="Ryan Luu", email="[email protected]" },
]
description = "Discord webhooks for new Instagram posts from any profile"
readme = "README.md"
keywords = ["webhooks", "feed", "embed", "Instagram", "Discord", "CLI"]
requires-python = ">=3.8"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: End Users/Desktop",
"Topic :: Utilities",
"Topic :: Internet",
"Topic :: Communications",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]

[project.urls]
Homepage = "https://github.com/RyanLua/InstaWebhooks"
Repository = "https://github.com/RyanLua/InstaWebhooks.git"
Issues = "https://github.com/RyanLua/InstaWebhooks/issues"

0 comments on commit fa39963

Please sign in to comment.