-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
53 lines (47 loc) · 1.13 KB
/
Copy pathpyproject.toml
File metadata and controls
53 lines (47 loc) · 1.13 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
42
43
44
45
46
47
48
49
50
51
52
53
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "hci"
version = "0.1.0"
authors = [
{ name="Robert Rood", email="robertrood@example.com" },
]
description = "A Python project for Human-Computer Interaction (HCI) research and development."
readme = "README.md"
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: Human Machine Interfaces",
]
dependencies = [
"numpy>=1.21.0",
"pandas>=1.3.0",
"matplotlib>=3.4.0",
"scipy>=1.7.0",
"streamlit",
]
[project.optional-dependencies]
dev = [
"pytest>=7.0",
"black>=22.0",
"isort>=5.10",
"flake8>=4.0",
]
gui = [
"PyQt6>=6.0.0",
"opencv-python>=4.5.0",
]
[project.urls]
"Homepage" = "https://github.com/robertrood-se/HCI"
"Bug Tracker" = "https://github.com/robertrood-se/HCI/issues"
[tool.setuptools.packages.find]
where = ["."]
include = ["hci*"]
[tool.black]
line-length = 88
target-version = ['py38']
[tool.isort]
profile = "black"