forked from CentreForDigitalHumanities/edpop-explorer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
55 lines (48 loc) · 1.19 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
50
51
52
53
54
55
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "edpop-explorer"
version = "0.5.0"
authors = [
{name="Utrecht University, Centre for Digital Humanities - Research Software Lab", email="[email protected]"}
]
dependencies = [
"sruthi>=2.0.0,<3",
"termcolor",
"appdirs",
"SPARQLWrapper",
'pyreadline3 ; platform_system == "Windows"',
'colorama ; platform_system == "Windows"',
'cmd2',
'pyyaml',
'rdflib>=7.0.0,<8',
'Pygments',
]
description = "Common interface to multiple library catalogues and bibliographical databases"
readme = "README.md"
requires-python = ">=3.8"
classifiers = [
'Development Status :: 2 - Pre-Alpha',
'Environment :: Console',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3'
]
[project.optional-dependencies]
dev = [
'pytest',
'sphinx',
'ruff',
]
[project.urls]
"Homepage" = "https://github.com/UUDigitalHumanitieslab/edpop-explorer"
[project.scripts]
edpopx = "edpop_explorer.__main__:main"
[tool.pytest.ini_options]
pythonpath = [
"edpop_explorer"
]
[tool.setuptools.packages.find]
where = ["."]