-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
37 lines (33 loc) · 903 Bytes
/
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>=42", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "fix8"
version = "0.1.0"
description = "Fix8 (Fixate) is an Open-Source GUI Tool for Working with Eye Tracking Data in Reading Tasks."
authors = [
{ name="Naser Al Madi", email="nsalmadi@colby.edu" }
]
readme = "README.md"
license = { file = "LICENSE" }
dependencies = [
"matplotlib==3.6.2",
"numpy==1.23.4",
"pandas==1.5.1",
"Pillow==10.3.0",
"PyQt5==5.15.10",
"scipy==1.9.3",
"qt-material==2.14"
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)",
"Operating System :: OS Independent",
]
[tool.setuptools]
packages = ["fix8"]
package-dir = {"fix8" = "src"}
[tool.setuptools.package-data]
"fix8" = ["*.py", ".images/*", "*.xml"]
[project.scripts]
fix8 = "fix8.fix8:main"