-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
48 lines (43 loc) · 1.33 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
[tool.poetry]
name = "uplc"
version = "1.0.7"
description = "Python implementation of untyped plutus language core"
authors = ["nielstron <n.muendler@web.de>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/opshin/uplc"
keywords = ["python", "language", "programming-language", "compiler", "validator", "smart-contracts", "cardano"]
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Topic :: Software Development :: Assemblers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
packages = [{include = "uplc"}]
[tool.poetry.dependencies]
python = ">=3.8, <3.12"
frozendict = "^2.3.8"
cbor2 = "^5.4.6"
frozenlist2 = "^1.0.0"
rply = "^0.7.8"
pycardano = ">=0.9.0, <0.13.0"
python-secp256k1-cardano = "^0.2.3"
[tool.poetry.group.dev.dependencies]
pyaiken = "^0.5.5"
hypothesis = "^6.75.0"
parameterized = "^0.9.0"
poetry-bumpversion = "^0.3.0"
pre-commit = "^3.2.2"
black = "^23.3.0"
coverage = "^7.2.5"
pytest = "^7.3.1"
[tool.poetry.scripts]
uplc = "uplc.__main__:main"
[tool.poetry_bumpversion.file."uplc/__init__.py"]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"