forked from OpShin/opshin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
49 lines (43 loc) · 1.39 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
49
[tool.poetry]
name = "opshin"
version = "0.18.1"
description = "A simple pythonic programming language for Smart Contracts on Cardano"
authors = ["nielstron <[email protected]>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/opshin/opshin"
documentation = "https://opshin.opshin.dev/"
keywords = ["python", "language", "programming-language", "compiler", "validator", "smart-contracts", "cardano"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Topic :: Software Development :: Compilers",
"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 = "opshin"}]
[tool.poetry.dependencies]
python = ">=3.8, <3.12"
uplc = "^0.6.6"
pluthon = "^0.4.1"
pycardano = "^0.9.0"
frozenlist2 = "^1.0.0"
astunparse = {version = "^1.6.3", python = "<3.9"}
[tool.poetry.group.dev.dependencies]
hypothesis = "^6.75.6"
parameterized = "^0.9.0"
black = "^23.3.0"
pre-commit = "^3.3.2"
coverage = "<7.0"
pytest = "^7.3.1"
coveralls = "^3.3.1"
poetry-bumpversion = "^0.3.0"
[tool.poetry.scripts]
opshin = "opshin.__main__:main"
[tool.poetry_bumpversion.file."opshin/__init__.py"]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"