-
Notifications
You must be signed in to change notification settings - Fork 14
/
pyproject.toml
42 lines (37 loc) · 1.23 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "alexandria3k"
version = "3.3.0"
authors = [
{ name="Diomidis Spinellis", email="[email protected]" },
]
description = "Efficient relational database queries over the entire Crossref abnd ORCID data sets"
readme = "README.md"
requires-python = ">=3.7"
license = {file = "LICENSE"}
dependencies = [
"apsw",
"importlib-metadata",
"pyahocorasick",
]
# See https://pypi.org/classifiers/
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Topic :: Database",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Software Development :: Libraries :: Python Modules",
]
[project.urls]
"Homepage" = "https://github.com/dspinellis/alexandria3k"
"Repository" = "https://github.com/dspinellis/alexandria3k.git"
"Bug Tracker" = "https://github.com/dspinellis/alexandria3k/issues"
"Documentation" = "https://dspinellis.github.io/alexandria3k/"
[project.scripts]
a3k = "alexandria3k.__main__:main"