You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
608 B
27 lines
608 B
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[project]
|
|
name = "drama_generator"
|
|
version = "0.0.1"
|
|
authors = [
|
|
{ name="Tom Weber", email="tom@weber.codes" },
|
|
]
|
|
description = "Shakesperean Drama Generator"
|
|
readme = "README.md"
|
|
requires-python = ">=3.7"
|
|
classifiers = [
|
|
"Programming Language :: Python :: 3",
|
|
"License :: OSI Approved :: MIT License",
|
|
"Operating System :: OS Independent",
|
|
]
|
|
|
|
[project.urls]
|
|
"repository" = "https://git.weber.codes/tom/drama_generator.git"
|
|
|
|
[tool.hatch.build]
|
|
include = [
|
|
"drama_generator/data",
|
|
"drama_generator/saved_models",
|
|
] |