-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
35 lines (32 loc) · 1.19 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
[project]
name = "astrofeed_firehose" # Required
version = "0.0.1" # Required
description = "The Bluesky firehose consumer for the Astronomy feeds."
readme = "README.md" # Optional
requires-python = ">=3.12,<3.13"
license = { file = "LICENSE" }
keywords = ["bluesky", "astronomy"]
authors = [
{ name = "Emily L. Hunt", email = "[email protected]" }, # Optional
]
maintainers = [
{ name = "Emily L. Hunt", email = "[email protected]" }, # Optional
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Topic :: Software Development :: Build Tools",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3 :: Only",
]
dependencies = ["astrofeed_lib", "uvloop>=0.20"]
[tool.uv.sources]
astrofeed_lib = { git = "https://github.com/bluesky-astronomy/astrofeed-lib", branch = "main" }
[project.urls]
"Homepage" = "https://astronomy.blue/"
"Bug Reports" = "https://github.com/bluesky-astronomy/astronomy-feeds"
[build-system]
requires = ["setuptools>=43.0.0", "wheel"]
build-backend = "setuptools.build_meta"