-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
47 lines (43 loc) · 1.6 KB
/
pyproject.toml
File metadata and controls
47 lines (43 loc) · 1.6 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
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "pica-automation"
version = "14.1.0"
authors = [
{ name = "Prathamesh Deshmukh", email = "prathameshium@duck.com" },
]
description = "A modular software suite for automating laboratory measurements in physics research."
readme = "README.md"
license = { file = "LICENSE" }
requires-python = ">=3.9"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Topic :: Scientific/Engineering :: Physics",
"Topic :: System :: Hardware :: Hardware Drivers",
]
dependencies = [
"pyvisa",
"pyvisa-py",
"numpy",
"matplotlib",
"pandas",
"pymeasure",
"Pillow",
# "gpib-ctypes", # JOSS TIP: Keep this commented for GitHub Actions to pass (requires OS drivers)
]
[project.urls]
"Homepage" = "https://github.com/prathameshnium/PICA-Python-Instrument-Control-and-Automation"
"Bug Tracker" = "https://github.com/prathameshnium/PICA-Python-Instrument-Control-and-Automation/issues"
[project.gui-scripts]
pica-launcher = "PICA_v6:main"
# --- CRITICAL CONFIGURATION FOR YOUR FOLDER STRUCTURE ---
[tool.setuptools.packages.find]
where = ["."] # Tells pip your code is in the root, not 'src'
include = ["*"] # Explicitly includes all subfolders (Keithley_2400, Utilities, etc.)
exclude = ["tests*", "_assets*", "Setup*"] # Excludes non-code assets from the installed package