-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
52 lines (48 loc) · 1.65 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
42
43
44
45
46
47
48
49
50
51
52
[build-system]
requires = ["setuptools>=40.8.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "psychopy-gammasci"
version = "0.0.1"
description = "Extension package for PsychoPy which adds support for Gamma Scientific Inc. devices."
readme = "README.md"
requires-python = ">= 3.7"
license = {text = "GNU General Public License v3 (GPLv3)"}
authors = [
{ name = "Jon Peirce", email = "[email protected]" },
{ name = "Matthew Cutone", email = "[email protected]" },
]
classifiers = [
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: Implementation :: CPython",
]
urls.homepage = "https://github.com/psychopy/psychopy-gammasci"
urls.changelog = "https://github.com/psychopy/psychopy-gammasci/blob/main/CHANGELOG.txt"
urls.documentation = "https://pages.github.com/psychopy/psychopy-gammasci"
urls.repository = "https://github.com/psychopy/psychopy-gammasci"
dependencies = [
"pyserial",
]
[project.optional-dependencies]
# dependencies for building the docs
docs = [
"psychopy",
"sphinx",
"furo",
]
# dependencies for running the test suite
tests = [
"psychopy @ git+https://github.com/psychopy/psychopy@release",
"pytest",
]
[project.entry-points."psychopy.hardware.gammasci"]
S470 = "psychopy_gammasci.gammasci:S470"
[tool.setuptools.packages.find]
where = ["",]