-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathpyproject.toml
More file actions
41 lines (37 loc) · 962 Bytes
/
pyproject.toml
File metadata and controls
41 lines (37 loc) · 962 Bytes
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
[build-system]
requires = ["maturin>=1.0,<2.0", "numpy>=1.21.0"]
build-backend = "maturin"
[project]
name = "etsi.etna"
version = "0.1.0"
description = "High-performance neural network framework with a Rust core"
readme = "README.md"
authors = [{name = "Etsi", email = "etsi.hq@gmail.com"}]
license = {text = "BSD-2-Clause"}
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Rust",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
]
dependencies = [
"numpy>=1.21.0",
"pandas>=1.3.0",
"pyarrow>=6.0.0",
"tqdm>=4.64.0",
]
[project.optional-dependencies]
dev = [
"pytest>=6.0",
"pytest-cov",
"black",
"flake8",
]
[tool.maturin]
module-name = "etna._etna_rust"
manifest-path = "etna_core/Cargo.toml"
python-source = "."
[project.scripts]
etna = "etna.cli:main"