-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
84 lines (78 loc) · 2.25 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
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
78
79
80
81
82
83
[build-system]
requires = ["flit_core>=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "astrobasecloud"
authors = [{name = "Anthony Corletti", email = "[email protected]"}]
dynamic = ["version", "description"]
readme = "README.md"
requires-python = ">=3.7.5"
dependencies = [
"fastapi>=0.74.0",
"typer>=0.4.0",
"gunicorn>=20.1.0",
"uvicorn>=0.17.0",
"PyYaml>=6.0",
"google-cloud-container>=2.10.3",
"google-cloud-service-usage>=1.2.1",
"boto3>=1.17.22",
"azure-identity>=1.7.1",
"azure-mgmt-resource>=20.1.0",
"azure-mgmt-containerservice>=17.0.0",
"msrestazure>=0.6.4"
]
classifiers = [
"Intended Audience :: Information Technology",
"Intended Audience :: System Administrators",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python",
"Topic :: Internet",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development",
"Typing :: Typed",
"Development Status :: 4 - Beta",
"Environment :: Web Environment",
"Framework :: AsyncIO",
"Framework :: FastAPI",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Internet :: WWW/HTTP :: HTTP Servers",
"Topic :: Internet :: WWW/HTTP",
]
[project.urls]
Home = "https://www.github.com/anthonycorletti/astrobase"
Documentation = "https://astrobase.corletti.xyz"
[project.scripts]
astrobase = "astrobasecloud.cli.main:app"
[project.optional-dependencies]
test = [
"pytest>=6.2.5",
"mypy>=0.910",
"coverage>=6.2",
"pytest-cov>=3.0.0",
"requests-mock>=1.9.3",
"types-PyYAML>=6.0.3",
"types-requests>=2.27.8",
"httpx>=0.21.1",
]
doc = [
"mkdocs>=1.1.2,<2.0.0",
"mkdocs-material>=8.1.4,<9.0.0",
"mdx-include>=1.4.1,<2.0.0",
]
dev = [
"flake8>=4.0.1",
"black>=21.12b0",
"isort>=5.10.1",
"autoflake>=1.4",
"flake8-docstrings>=1.6.0"
]
[tool.isort]
profile = "black"