This repository was archived by the owner on May 30, 2024. It is now read-only.
forked from stevencox/tycho
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
61 lines (54 loc) · 1.42 KB
/
pyproject.toml
File metadata and controls
61 lines (54 loc) · 1.42 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
[build-system]
requires = [
"setuptools>=42",
"wheel"
]
build-backend = "setuptools.build_meta"
[project]
name = "tycho-api"
authors = [
{name = "Renaissance Computing Institute", email = "scox@renci.org"}
]
maintainers = [
{name = "Murali Karthik Kothapalli", email = "muralikarthik.k@renci.org"}
]
requires-python = ">=3.7"
description = "Tycho is an API, compiler, and executor for cloud native distributed systems."
readme = "README.md"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent"
]
dependencies = [
"deepmerge==1.0.1",
"flasgger==0.9.5",
"Flask==2.0.3",
"flask_cors==3.0.10",
"flask_restful==0.3.9",
"GitPython==3.1.11",
"Jinja2==3.0.3",
"jsonschema==3.2.0",
"kubernetes==25.3.0",
"netifaces==0.11.0",
"PyYAML==5.4.1",
"requests==2.31.0",
"docker-compose==1.29.2",
"requests_cache==0.9.2",
]
dynamic = ["version"]
[project.urls]
documentation = "https://github.com/helxplatform/tycho"
repository = "https://github.com/helxplatform/tycho"
[project.scripts]
tycho = "tycho.api:main"
[tool.setuptools]
packages = ["tycho", "tycho.template", "tycho.conf"]
include-package-data = true
zip-safe = false
[tool.setuptools.package-data]
tycho = ["*yaml"]
"tycho.conf" = ["*.yaml"]
"tycho.template" = ["*.yaml"]
[tool.setuptools.dynamic]
version = {attr = "tycho.VERSION"}