-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
37 lines (32 loc) · 1.12 KB
/
pyproject.toml
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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "psifx"
description = "Psychological and Social Interactions Feature Extraction"
readme = "README.md"
requires-python = ">=3.7"
authors = [
{ name = "Guillaume Rochette", email = "guillaume.rochette@unil.ch" },
{ name = "Matthew Vowels", email = "matthew.vowels@unil.ch" },
]
keywords = ["TODO"]
classifiers = [
"Development Status :: 1 - Planning",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
]
dynamic = ["dependencies", "optional-dependencies", "version"]
[project.urls]
homepage = "https://github.com/GuillaumeRochette/psifx"
documentation = "https://github.com/GuillaumeRochette/psifx"
repository = "https://github.com/GuillaumeRochette/psifx"
[project.scripts]
psifx = "psifx.command:main"
[tool.setuptools.dynamic]
version = {attr = "psifx.__version__"}
dependencies = {file = ["requirements.txt"]}
optional-dependencies.docs = { file = ["docs/requirements.txt"] }
[tool.setuptools.packages.find]
include = ["psifx*"]