used Rye to give me a proper pyproject.toml and manage development here

This commit is contained in:
Amy G. Bowersox 2024-07-26 23:13:28 -06:00
parent 5e144d303d
commit 0a26cc4d13
5 changed files with 49 additions and 4 deletions

1
.python-version Normal file
View File

@ -0,0 +1 @@
3.12.4

24
pyproject.toml Normal file
View File

@ -0,0 +1,24 @@
[project]
name = "dragonglass"
version = "0.1.0"
description = "Add your description here"
authors = [
{ name = "Amy Gale Ruth Bowersox", email = "amy@erbosoft.com" }
]
dependencies = []
readme = "README.md"
requires-python = ">= 3.8"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.rye]
managed = true
dev-dependencies = []
[tool.hatch.metadata]
allow-direct-references = true
[tool.hatch.build.targets.wheel]
packages = ["src/dragonglass"]

12
requirements-dev.lock Normal file
View File

@ -0,0 +1,12 @@
# generated by rye
# use `rye lock` or `rye sync` to update this lockfile
#
# last locked with the following flags:
# pre: false
# features: []
# all-features: false
# with-sources: false
# generate-hashes: false
# universal: false
-e file:.

12
requirements.lock Normal file
View File

@ -0,0 +1,12 @@
# generated by rye
# use `rye lock` or `rye sync` to update this lockfile
#
# last locked with the following flags:
# pre: false
# features: []
# all-features: false
# with-sources: false
# generate-hashes: false
# universal: false
-e file:.

View File

@ -1,4 +0,0 @@
Jinja2==3.1.3
Markdown==3.5.2
MarkupSafe==2.1.5
PyYAML==6.0.1