forked from LaboratoireMecaniqueLille/crappy
-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
85 lines (78 loc) · 2.44 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
[build-system]
requires = ["setuptools >= 61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "crappy"
dynamic = ["readme"]
version = "2.0.5"
description = "Command and Real-time Acquisition in Parallelized Python"
license = {file = "LICENSE"}
keywords = ["control", "command", "acquisition", "multiprocessing"]
dependencies = ["numpy"]
requires-python = ">=3.7"
authors = [{name = "LaMcube", email = "[email protected]"}]
maintainers = [{name = "Antoine Weisrock", email = "[email protected]"}]
classifiers = [
"Development Status :: 4 - Beta ",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)",
"Natural Language :: English",
"Operating System :: OS Independent",
"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 :: 3.12",
"Topic :: Scientific/Engineering",
"Topic :: Software Development :: Build Tools",
"Topic :: Software Development :: Embedded Systems"
]
[project.urls]
Homepage = "https://github.com/LaboratoireMecaniqueLille/crappy"
Documentation = "https://crappy.readthedocs.io/en/latest/index.html"
Repository = "https://github.com/LaboratoireMecaniqueLille/crappy.git"
Issues = "https://github.com/LaboratoireMecaniqueLille/crappy/issues"
Download = "https://pypi.org/project/crappy/#files"
[project.optional-dependencies]
SBC = [
"smbus2",
"spidev",
"Adafruit-Blinka",
"adafruit-circuitpython-ads1x15",
"adafruit-circuitpython-motorkit",
"adafruit-circuitpython-mprls",
"adafruit-circuitpython-busdevice"
]
image = [
"opencv-python>=4.0",
"Pillow>=8.0.0",
"matplotlib>=3.3.0",
"SimpleITK>=2.0.0",
"scikit-image>=0.18.0"
]
hardware = [
"pyusb>=1.1.0",
"pyserial>=3.4",
"pyyaml>=5.3"
]
main = [
"matplotlib>=3.3.0",
"opencv-python>=4.0",
"pyserial>=3.4"
]
[tool.setuptools]
package-dir = {"" = "src"}
include-package-data = false
[tool.setuptools.dynamic]
readme = {file = "README.md", content-type = "text/markdown"}
[tool.setuptools.packages.find]
where = ["src"]
include = ["crappy*"]
exclude = []
namespaces = false
[tool.setuptools.package-data]
crappy = [
"tool/data/*",
"tool/microcontroller.*",
"tool/image_processing/kernels.cu"]