Skip to content

Commit 245fd07

Browse files
author
Ati Sharma
committed
add setuptools files
1 parent b97830a commit 245fd07

File tree

2 files changed

+37
-0
lines changed

2 files changed

+37
-0
lines changed

pyproject.toml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
[build-system]
2+
requires = [
3+
"setuptools >= 45",
4+
"wheel",
5+
"setuptools_scm[toml]>=6.0"
6+
]
7+
build-backend = "setuptools.build_meta"
8+
9+
[tool.setuptools_scm]

setup.cfg

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
[metadata]
2+
name = chasm
3+
description = The game client for Chasm, a multi-player text adventure driven by large language models.
4+
url = https://github.com/atisharma/chasm
5+
author = Ati Sharma
6+
author_email = [email protected]
7+
keywords = chasm, text adventure, interactive fiction
8+
license = GNU AFFERO GENERAL PUBLIC LICENSE V3
9+
license_files = LICENSE
10+
long_description = file: README.md
11+
12+
13+
[options]
14+
python_requires = >= 3.10
15+
install_requires = file: requirements.txt
16+
include_package_data = True
17+
package_dir =
18+
packages = find:
19+
20+
[options.entry_points]
21+
console_scripts =
22+
chasm = chasm.repl:run
23+
24+
[options.packages.find]
25+
where =
26+
27+
[options.package_data]
28+
* = *.hy

0 commit comments

Comments
 (0)