-
Notifications
You must be signed in to change notification settings - Fork 27
/
pyproject.toml
41 lines (36 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
38
39
40
41
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "smile"
version = "1.0.0"
description = "State Machine Interface Library for Experiments"
authors = [{ name = "Per B. Sederberg", email = "[email protected]" }]
maintainers = [{ name = "Per B. Sederberg", email = "[email protected]" }]
readme = { file = "README.rst", content-type = "text/x-rst" }
license = { file = "license.txt" }
requires-python = ">=3.6"
dependencies = ["kivy", "packaging"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Researchers",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
]
keywords = ["state machine", "experiments"]
[project.optional-dependencies]
audio = ["pyo"]
[project.urls]
Documentation = "https://smile-docs.readthedocs.io/en/latest/#"
Source = "https://github.com/compmem/smile"
Tracker = "https://github.com/compmem/smile/issues"
[tool.setuptools.package-data]
smile = [
"face-smile.png",
"logo.png",
"test_sound.wav",
"test_video.mp4",
"lock.png",
"unlock.png",
"crosshairs*",
]