-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
45 lines (39 loc) · 1.19 KB
/
Copy pathpyproject.toml
File metadata and controls
45 lines (39 loc) · 1.19 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
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "sgi-machine"
version = "1.0.0"
description = "Structural Geospatial Identification: GPS+IMU object classification"
readme = "README.md"
license = { text = "MIT" }
authors = [{ name = "Yahya Akbay" }]
keywords = ["gps", "imu", "object-classification", "geospatial", "edge-ai"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Physics",
]
requires-python = ">=3.8"
dependencies = [
"numpy>=1.21",
"scipy>=1.7",
"scikit-learn>=1.0",
"joblib>=1.1",
]
[project.optional-dependencies]
dev = ["pytest", "pandas"]
full = ["pandas", "matplotlib"]
[project.urls]
"Homepage" = "https://github.com/or4k2l/Structural-Geospatial-Identification"
"Kaggle" = "https://www.kaggle.com/yahyaakbay"
"Notebooks" = "https://www.kaggle.com/yahyaakbay/sgi-v3"
[tool.setuptools.packages.find]
where = ["."]
include = ["sgi*"]
[tool.setuptools.package-data]
"sgi.models" = ["*.pkl"]
[tool.pytest.ini_options]
testpaths = ["tests"]