-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
36 lines (34 loc) · 1.15 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
[project]
name = "astrofeed_server" # Required
version = "0.0.1" # Required
description = "The Flask server 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@git+https://github.com/bluesky-astronomy/astrofeed-lib",
"Flask>=2.3.2,<3.0",
"gunicorn>=20.1.0,",
]
[project.urls]
"Homepage" = "https://astronomy.blue/"
"Bug Reports" = "https://github.com/bluesky-astronomy/astrofeed-server"
[build-system]
requires = ["setuptools>=43.0.0", "wheel"]
build-backend = "setuptools.build_meta"