-
Notifications
You must be signed in to change notification settings - Fork 7
/
pyproject.toml
42 lines (37 loc) · 1.06 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
[build-system]
requires = ["setuptools>=64", "setuptools_scm>=8"]
build-backend = "setuptools.build_meta"
[project]
name = "gcn-kafka"
description = "Kafka client for NASA's General Coordinates Network (GCN)"
license = { text = "CC0-1.0" }
readme = "README.md"
authors = [
{ name = "Leo Singer", email = "leo.p.singer@nasa.gov" },
{ name = "Tom Barclay", email = "tb@umbc.edu" },
{ name = "Eric Burns", email = "ericburns@lsu.edu" }
]
classifiers = [
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Astronomy",
"Topic :: Scientific/Engineering :: Physics",
"Topic :: System :: Networking"
]
dependencies = [
"authlib",
"certifi",
"confluent-kafka >= 2.2.0",
"requests",
]
requires-python = ">=3.9"
dynamic = [ "version" ]
[project.urls]
source = "https://github.com/nasa-gcn/gcn-kafka-python"
[project.optional-dependencies]
test = ["pytest"]
[tool.setuptools_scm]
write_to = "src/gcn_kafka/_version.py"
[tool.coverage.run]
source = ["test"]
source_pkgs = ["gcn_kafka"]