forked from mehdieji/tifex-py
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
41 lines (38 loc) · 1.27 KB
/
pyproject.toml
File metadata and controls
41 lines (38 loc) · 1.27 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
# pyproject.toml
[build-system]
requires = ["setuptools>=61.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "tifex-py"
version = "0.1.1"
description = "TODO"
readme = "README.md"
authors = [
{name = "Mehdi Ejtehadi", email = "TODO@gmail.com"},
{name = "Gloria Edumaba Graham", email = "edumabagrahamp@gmail.com"},
{name = "Cailin Ringstrom", email = "cringstrom@ethz.ch"}]
maintainers = [
{name = "TODO", email = "TODO@gmail.com"}
]
license = {file = "LICENSE.txt"}
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3"
]
keywords = ["feature", "extraction"]
dependencies = [
"scipy",
"statsmodels",
"numpy",
"librosa",
"PyWavelets",
"PyYAML"
]
[project.urls]
Repository = "https://github.com/SCAI-Lab/proj-adl-classification/tree/main"
[tool.setuptools.packages.find]
where = ["."] # list of folders that contain the packages (["."] by default)
include = ["tifex_py", "tifex_py.feature_extraction", "tifex_py.utils"] # package names should match these glob patterns (["*"] by default)
exclude = [] # exclude packages matching these glob patterns (empty by default)
namespaces = false # to disable scanning PEP 420 namespaces (true by default)