-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
49 lines (42 loc) · 1.21 KB
/
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
38
39
40
41
42
43
44
45
46
47
48
49
[build-system]
requires = ["setuptools>=45", "setuptools_scm[toml]>=6.2"]
[project]
authors = [{name = "Tom de Geus", email = "tom@geus.me"}]
classifiers = ["License :: OSI Approved :: MIT License"]
dependencies = [
"arxiv",
"bibtexparser",
"click",
"docopt",
"GitPython",
"numpy",
"PyYAML",
"requests",
"tqdm"
]
description = "Reformat BibTeX files"
dynamic = ["version"]
name = "GooseBib"
readme = "README.md"
requires-python = ">=3.6"
[project.scripts]
GbibCheckAuthors = "GooseBib.cli.GbibCheckAuthors:main"
GbibCheckKeys = "GooseBib.cli.GbibCheckKeys:main"
GbibCheckLink = "GooseBib.cli.GbibCheckLink:main"
GbibClean = "GooseBib.bibtex:GbibClean"
GbibDiscover = "GooseBib.bibtex:GbibDiscover"
GbibList = "GooseBib.cli.GbibList:main"
GbibParse = "GooseBib.cli.GbibParse:main"
GbibSelect = "GooseBib.cli.GbibSelect:main"
GbibSelectAlias = "GooseBib.cli.GbibSelectAlias:main"
GbibShowAuthorRename = "GooseBib.bibtex:GbibShowAuthorRename"
[project.urls]
Source = "https://github.com/tdegeus/GooseBib"
[tool.setuptools]
include-package-data = true
[tool.setuptools.package-data]
GooseBib = ["*.yaml"]
[tool.setuptools.packages.find]
exclude = ["docs*", "tests*"]
[tool.setuptools_scm]
write_to = "GooseBib/_version.py"