-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
40 lines (36 loc) · 930 Bytes
/
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
[project]
name = "instabase-app-cicd-toolkit"
version = "0.0.2"
requires-python = ">=3.10"
authors = [
{ name = "Hannah Roiter", email = "hannah.roiter@instabase.com" },
{ name = "Ganan Prabaharan", email = "ganan.prabaharan@instabase.com" },
{ name = "Ben Hope", email = "ben.hope@instabase.com" },
]
description = "Tools for building CI/CD workflows Instabase Solutions and Apps."
readme = "README.md"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
dependencies = [
"requests",
"python-dotenv"
]
[project.optional-dependencies]
test = [
"black",
"pytest",
"pytest-cov",
"pytest-sugar"
]
[project.scripts]
ib-cicd = "ib_cicd.promote_solution:main"
ib-cicd-solution-builder = "ib_cicd.promote_sb_solution:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
include = [
"ib_cicd/",
]