This repository was archived by the owner on Oct 12, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
50 lines (42 loc) · 1.46 KB
/
pyproject.toml
File metadata and controls
50 lines (42 loc) · 1.46 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
[build-system]
requires = ["setuptools>=61.2.0", "wheel", "setuptools_scm[toml]>=3.4.3", "kaitaiStructCompile[toml]"]
build-backend = "setuptools.build_meta"
[project]
name = "RDataParser"
authors = [{name = "KOLANICH"}]
description = "a pure python parser of RData without using R."
readme = "ReadMe.md"
keywords = ["R", "statistics", "RData", "parser"]
license = {text = "GPL-3.0+"}
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Development Status :: 4 - Beta",
"Environment :: Other Environment",
"Intended Audience :: Developers",
"License :: OSI Approved",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dependencies = [
"numpy",
"kaitaistruct", # @ git+https://github.com/kaitai-io/kaitai_struct_python_runtime.git"
]
dynamic = ["version"]
[project.urls]
Homepage = "https://codeberg.org/KOLANICH-ML/RDataParser.py"
[tool.setuptools]
include-package-data = true
zip-safe = true
packages = ["RDataParser"]
[tool.setuptools_scm]
[tool.kaitai]
outputDir = "RDataParser"
[tool.kaitai.flags]
readStoresPos = true
[tool.kaitai.repos."https://codeberg.org/KOLANICH-specs/kaitai_struct_formats.git"."RData"]
update = true
localPath = "kaitai_struct_formats"
[tool.kaitai.repos."https://codeberg.org/KOLANICH-specs/kaitai_struct_formats.git"."RData".formats.r_data]
path = "serialization/r_data.ksy"