generated from CaltechOpticalObservatories/python-package-template
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
31 lines (28 loc) · 899 Bytes
/
pyproject.toml
File metadata and controls
31 lines (28 loc) · 899 Bytes
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
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "libby"
version = "0.1.0"
description = "Libby: a tiny messaging library which uses bamboo with a ZMQ transport"
readme = "README.md"
requires-python = ">=3.9"
license = "MIT"
authors = [
{ name="Prakriti Gupta", email="pgupta@caltech.edu" },
{ name="Jeb Bailey", email="jibailey@caltech.edu" },
{ name="Michael Langmayr", email="langmayr@caltech.edu" }
]
dependencies = [
"pyzmq>=25.0.0",
"pika>=1.3.0",
"bamboo @ git+https://github.com/CaltechOpticalObservatories/bamboo.git@main"
]
[project.urls]
Homepage = "https://example.com"
Repository = "https://github.com/yourusername/your-repo"
"Bug Tracker" = "https://github.com/yourusername/your-repo/issues"
[tool.setuptools.packages.find]
where = ["."]
include = ["libby", "libby.*"]
exclude = ["peers*", "package*"]