forked from nasa-gcn/gcn-kafka-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
42 lines (37 loc) · 1.13 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>=61", "setuptools_scm[toml]>=6.2", "wheel"]
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 = "[email protected]" },
{ name = "Tom Barclay", email = "[email protected]" },
{ name = "Eric Burns", email = "[email protected]" }
]
classifiers = [
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Astronomy",
"Topic :: Scientific/Engineering :: Physics",
"Topic :: System :: Networking"
]
dependencies = [
"authlib",
"certifi",
"confluent-kafka >= 1.6.1, != 2.1.0, != 2.1.1",
"requests",
"typing-extensions; python_version<='3.7'"
]
requires-python = ">=3.7"
dynamic = [ "version" ]
[project.urls]
source = "https://github.com/nasa-gcn/gcn-kafka-python"
[project.optional-dependencies]
test = ["pytest"]
[tool.setuptools.packages.find]
include = ["gcn_kafka"]
[tool.setuptools_scm]
write_to = "gcn_kafka/_version.py"