-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
51 lines (47 loc) · 1.22 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "sparecores-runner"
version = "0.0.30"
requires-python = ">= 3.9"
dependencies = [
"click",
"pulumi",
"pulumi-aws",
"pulumi-azure-native",
"pulumi-gcp",
"pulumi-hcloud",
"pulumi-upcloud",
"requests",
"sentry-sdk",
"sparecores-crawler>=0.2.1",
"sparecores-data>=0.2.1",
"sqlmodel",
]
authors = [
{ name="Attila Nagy" },
{ name="Gergely Daroczi" },
{ name="Balazs Hodobay" },
]
maintainers = [
{ name="Spare Cores team", email="pkg@sparecores.com" }
]
description = "Start cloud instances."
readme = "README.md"
keywords = ["cloud", "compute"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)",
"Operating System :: OS Independent",
"Development Status :: 3 - Alpha",
]
[project.urls]
repository = "https://github.com/SpareCores/sc-runner"
issues = "https://github.com/SpareCores/sc-runner/issues"
documentation = "https://sparecores.github.io/sc-runner/"
homepage = "https://sparecores.com"
[project.scripts]
sc-runner = "sc_runner.cli:cli"
[tool.setuptools.packages.find]
where = ["src"]