forked from condense9/hark-lang
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
69 lines (62 loc) · 1.58 KB
/
pyproject.toml
File metadata and controls
69 lines (62 loc) · 1.58 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
61
62
63
64
65
66
67
68
69
[tool.poetry]
name = "teal-lang"
version = "0.4.3"
description = "The Teal Programming Language"
license = "Apache-2.0"
authors = ["Ric da Silva <ric@condense9.com>"]
maintainers = ["Ric da Silva <ric@condense9.com>"]
readme = "README.md"
homepage = "https://www.condense9.com"
repository = "https://github.com/condense9/teal-lang"
keywords = [
"serverless",
"orchestration",
"concurrency",
"aws",
"language"
]
classifiers = [
"Development Status :: 3 - Alpha",
"Topic :: Software Development",
"Intended Audience :: Developers"
]
packages = [
{ include = "teal_lang", from = "src" },
]
include = ["src/teal_lang/dist_data/teal_lambda.zip"]
exclude = ["src/teal_lang/examples/*.*"]
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/condense9/teal-lang/issues"
"Changelog" = "https://github.com/condense9/teal-lang/blob/master/CHANGELOG.md"
[tool.poetry.scripts]
teal = 'teal_lang.cli.main:main'
[tool.poetry.dependencies]
boto3 = "*"
botocore = "*"
python = "^3.8"
pynamodb = "*"
docopt = "*"
graphviz = "^0.13.2"
schema = "^0.7.2"
pyyaml = "^5.3.1"
pydot = "^1.4.1"
sly = "^0.4"
toml = "^0.10.1"
deterministic_zip = "^0.1"
coloredlogs = "^14.0"
parsy = "^1.3.0"
yaspin = "^0.17.0"
colorful = "^0.5.4"
texttable = "^1.6.2"
PyInquirer = "^1.0.3"
gql = "^2.0.0"
[tool.poetry.dev-dependencies]
pytest = "^5.2"
pytest-repeat = "*"
# md-tangle = {version = "*", optional = true}
# sphinx = {version = "*", optional = true}
# pydoc-markdown = {version = "^2.1.3", optional = true}
flake8 = "^3.7.9"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"