This commit is contained in:
Waylon Walker 2022-12-27 16:50:47 -06:00
commit 212ee3028b
No known key found for this signature in database
GPG key ID: 66E2BF2B4190EFE4
12 changed files with 1113 additions and 0 deletions

42
pyproject.toml Normal file
View file

@ -0,0 +1,42 @@
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "dinghy-markata-com"
description = 'markata git digest'
readme = "README.md"
requires-python = ">=3.7"
license = "MIT"
keywords = []
authors = [
{ name = "Waylon S. Walker", email = "waylon@waylonwalker.com" },
]
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
]
dependencies = ['dinghy']
[project.urls]
Documentation = "https://github.com/unknown/dinghy-markata-com#readme"
Issues = "https://github.com/unknown/dinghy-markata-com/issues"
Source = "https://github.com/unknown/dinghy-markata-com"
[tool.hatch.version]
path = "dinghy_markata_com/__about__.py"
[tool.hatch.envs.default]
dependencies = [
]
[tool.hatch.envs.default.scripts]
build = "dinghy"