-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
38 lines (31 loc) · 904 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
36
37
[project]
name = "aggie-unterprise"
version = "1.0.8"
description = "A Python package for extracting and processing grant data from AggieEnterprise spreadsheets."
authors = [
{ name="Dave Doty", email="[email protected]" }
]
readme = "README.md"
requires-python = ">=3.7"
license = { text = "MIT" }
dependencies = [
"openpyxl>=3.0.0",
"tabulate>=0.9.0"
]
[project.urls]
Homepage = "https://github.com/dave-doty/aggie-unterprise"
Issues = "https://github.com/dave-doty/aggie-unterprise/issues"
API = "https://aggie-unterprise.readthedocs.io/"
[build-system]
requires = ["setuptools>=42", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ["aggie_unterprise"]
[project.scripts]
aggie-report = "aggie_unterprise.aggie_report:main"
[project.optional-dependencies]
docs = [
"mkdocs>=1.4.0",
"mkdocstrings[python]>=0.20.0",
"mkdocs-material>=9.1.0",
]