-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
35 lines (31 loc) · 1016 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
34
35
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "outdoorsy"
authors = [
{ name="Rachael Crook", email="rachaelc@linux.com" },
]
description = "A demo command line tool for displaying information from a comma or pipe delimited file from a fictional Company named Outdoor.sy"
readme = "README.md"
license = { file="LICENSE" }
keywords = ["outdoorsy command line tool csv pipe delimited demo argparse hatchling hatch"]
requires-python = ">=3.7"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"colorama>=0.4.5",
"tabulate>=0.8.10",
]
dynamic = ["version"]
[project.urls]
Documentation = "https://github.com/rachaelcrook/outdoorsy#readme"
Issues = "https://github.com/rachaelcrook/outdoorsy/issues"
Source = "https://github.com/rachaelcrook/outdoorsy"
[project.scripts]
outdoorsy = "outdoorsy:main"
[tool.hatch.version]
path = "src/outdoorsy/app.py"