-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
48 lines (45 loc) · 1.24 KB
/
pyproject.toml
File metadata and controls
48 lines (45 loc) · 1.24 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
[build-system]
requires = ["setuptools >= 61.0.0"]
build-backend = "setuptools.build_meta"
[project]
name = "dose_every_well"
version = "0.7.0"
description='Precision weighing and dosing system for microplate automation on Raspberry Pi'
readme = "README.md"
license = {file = "LICENSE"}
requires-python = ">=3.8"
authors = [
{name = "Yang Cao", email = "yangcyril.cao@utoronto.ca"}
]
dependencies = [
"pyserial==3.5",
"matplotlib==3.10.0",
"PyYAML==6.0.2",
"matterlab_balances",
"smbus2",
# Raspberry Pi dependencies (primary target platform)
"adafruit-circuitpython-pca9685",
"adafruit-circuitpython-motor",
"rpi-lgpio"
]
classifiers = [
"Development Status :: 1 - Planning",
"License :: MIT",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Natural Language :: English",
"Operating System :: OS Independent",
"Topic :: Software Development",
]
[project.optional-dependencies]
# Development on non-Raspberry Pi platforms
dev = [
"pytest",
"black",
"flake8"
]
[tool.setuptools.package-dir]
dose_every_well = 'src/dose_every_well'