Skip to content

Commit

Permalink
project
Browse files Browse the repository at this point in the history
  • Loading branch information
bra-fsn committed May 1, 2024
1 parent 0a7613c commit 327ce88
Showing 1 changed file with 45 additions and 0 deletions.
45 changes: 45 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"

[project]
name = "sparecores-runner"
version = "0.0.1"
requires-python = ">= 3.9"
dependencies = [
"click",
"pulumi",
"pulumi-aws",
"sparecores-crawler",
"sparecores-data",
"sqlmodel",
]
authors = [
{ name="Attila Nagy" },
{ name="Gergely Daroczi" },
{ name="Balazs Hodobay" },
]
maintainers = [
{ name="Spare Cores team", email="[email protected]" }
]
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"]

0 comments on commit 327ce88

Please sign in to comment.