-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
46 lines (42 loc) · 1.53 KB
/
pyproject.toml
File metadata and controls
46 lines (42 loc) · 1.53 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
[build-system]
requires = ["maturin>=1.0,<2.0"]
build-backend = "maturin"
[project]
name = "phaeton"
version = "0.3.0"
description = "A high-performance preprocessing and ETL engine for sanitizing raw data streams, accelerated by Rust."
readme = "README.md"
license = {file = "LICENSE"}
authors = [
{name = "Zahraan Dzakii Tsaqiif", email = "zahraandzakiits@gmail.com"}
]
requires-python = ">=3.8"
dependencies = [
"tabulate>=0.9.0"
]
keywords = ["data-cleaning", "rust", "preprocessing", "etl", "high-performance", "streaming"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Rust",
"Programming Language :: Python :: Implementation :: CPython",
"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",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Scientific/Engineering :: Information Analysis",
]
[project.urls]
Homepage = "https://github.com/rannd1nt/phaeton"
Repository = "https://github.com/rannd1nt/phaeton"
Issues = "https://github.com/rannd1nt/phaeton/issues"
Documentation = "https://github.com/rannd1nt/phaeton#readme"
[project.optional-dependencies]
[tool.maturin]
python-source = "python"
module-name = "phaeton._phaeton"