-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
28 lines (25 loc) · 793 Bytes
/
pyproject.toml
File metadata and controls
28 lines (25 loc) · 793 Bytes
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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "arxiv_tool"
version = "0.0.1"
authors = [
{ name = "William Guimont-Martin", email = "william.guimont-martin@norlab.ulaval.ca" },
{ name = "Damien LaRocque", email = "phicoltan@gmail.com" },
]
description = "Prepare your arXiv submissions"
readme = "README.md"
license = { file = "LICENSE" }
requires-python = ">=3.8"
dependencies = ["arxiv-collector"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
[project.urls]
Homepage = "https://github.com/willGuimont/arxiv_tool"
Issues = "https://github.com/willGuimont/arxiv_tool/issues"
[project.scripts]
arxiv_tool = "arxiv_tool.__main__:main"