-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
37 lines (31 loc) · 923 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
[build-system]
requires = ["setuptools >= 61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "arxiv_to_bibtex"
version = "0.1"
dependencies = [
"requests",
"beautifulsoup4",
]
requires-python = ">= 3.7"
authors = [
{name = "David Lowry-Duda", email="[email protected]"},
]
maintainers = [
{name = "David Lowry-Duda", email="[email protected]"},
]
description = "A simple tool to get bibtex from arxiv ids."
readme = "README.md"
license = {file = "LICENSE"}
keywords = ["arxiv", "bibtex", "latex"]
classifiers = [
"Development Status :: 4 - Beta",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Programming Language :: Python :: 3",
]
[project.urls]
Repository = "https://github.com/davidlowryduda/arxiv_to_bibtex"
Issues = "https://github.com/davidlowryduda/arxiv_to_bibtex/issues"
[project.scripts]
arxiv_to_bibtex = "arxiv_to_bibtex.__main__:main_cli"