-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpyproject.toml
More file actions
52 lines (48 loc) · 1.59 KB
/
pyproject.toml
File metadata and controls
52 lines (48 loc) · 1.59 KB
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
[build-system]
requires = ['hatchling>=1.11.0']
build-backend = 'hatchling.build'
[project.urls]
Documentation = 'https://pycottas.readthedocs.io'
Source = 'https://github.com/cottas-rdf/pycottas'
Tracker = 'https://github.com/cottas-rdf/pycottas/issues'
History = 'https://github.com/cottas-rdf/pycottas/releases'
[project]
name = 'pycottas'
description = 'Python COTTAS library for compressing and querying RDF.'
readme = 'README.md'
keywords = ['RDF', 'Knowledge Graph', 'Apache Parquet', 'Data Compression']
authors = [
{name = 'Julián Arenas-Guerrero', email = 'julian.arenas.guerrero@upm.es'}
]
license = 'Apache-2.0'
classifiers = [
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3.13',
'Programming Language :: Python :: 3.14',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: Information Technology',
'Intended Audience :: Science/Research',
'Topic :: Database',
'Topic :: Utilities',
'Topic :: Scientific/Engineering'
]
requires-python = '>=3.8'
dynamic = ['version']
dependencies = [
'rdflib>=7.0.0, <8.0.0',
'duckdb>=1.2.2, <2.0.0',
'pandas>=2.0.0, <3.0.0',
'pyoxigraph==0.3.18'
]
[project.scripts]
pycottas = 'pycottas.__main__:main'
[tool.hatch.version]
path = 'src/pycottas/_version.py'