-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathpyproject.toml
33 lines (29 loc) · 906 Bytes
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "seashells"
authors = [
{ name = "Anish Athalye", email = "me@anishathalye.com" },
]
description = "The official client for Seashells.io"
readme = "README.md"
requires-python = ">=2.7"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 3",
"Topic :: Utilities",
]
keywords = ["shell", "seashells", "seashells.io"]
dynamic = ["version"]
[project.scripts]
seashells = "seashells.cli:main"
[project.urls]
homepage = "https://github.com/anishathalye/seashells"
repository = "https://github.com/anishathalye/seashells.git"
issues = "https://github.com/anishathalye/seashells/issues"
[tool.hatch.version]
path = "src/seashells/__init__.py"