-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
77 lines (70 loc) · 2.18 KB
/
pyproject.toml
File metadata and controls
77 lines (70 loc) · 2.18 KB
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
[build-system]
requires = ["setuptools>=65.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "noaa-jetstream"
version = "0.1.14"
description = "JetStream: Cloud Data Manager - A comprehensive tool for managing local-to-cloud uploads with queue management, statistics, and folder analysis"
readme = "README.md"
requires-python = ">=3.9"
license = {text = "MIT"}
keywords = ["cloud", "upload", "gcs", "google-cloud", "data-management", "queue", "noaa"]
authors = [
{name = "Michael Akridge"}
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
"Topic :: Internet :: WWW/HTTP :: HTTP Servers",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Operating System :: OS Independent",
]
dependencies = [
"fastapi>=0.109.0",
"fastapi-cli>=0.0.20",
"uvicorn[standard]>=0.27.0",
"python-multipart>=0.0.6",
"sqlalchemy>=2.0.25",
"alembic>=1.13.0",
"pydantic>=2.7.0",
"pydantic-settings>=2.1.0",
"aiofiles>=23.2.0",
"python-dotenv>=1.0.0",
"google-cloud-storage>=2.14.0",
"google-auth>=2.27.0",
"google-auth-oauthlib>=1.2.0",
"pyshortcuts>=1.9.0",
"pywin32>=305; platform_system=='Windows'",
]
[project.optional-dependencies]
dev = [
"pytest>=7.0.0",
"pytest-asyncio>=0.21.0",
"black>=23.0.0",
"flake8>=6.0.0",
]
[project.urls]
Homepage = "https://github.com/MichaelAkridge-NOAA/jetstream"
Documentation = "https://github.com/MichaelAkridge-NOAA/jetstream#readme"
Repository = "https://github.com/MichaelAkridge-NOAA/jetstream"
"Bug Tracker" = "https://github.com/MichaelAkridge-NOAA/jetstream/issues"
[project.scripts]
jetstream = "jetstream.cli:main"
jetstream-server = "jetstream.cli:main"
jetstream-create-shortcuts = "jetstream.shortcuts:main_create"
jetstream-remove-shortcuts = "jetstream.shortcuts:main_remove"
[tool.setuptools]
packages = ["jetstream", "jetstream.routers"]
[tool.setuptools.package-data]
jetstream = [
"static/*.html",
"static/*.ico",
"static/*.png",
"static/css/*.css",
"static/js/*.js",
]