forked from briqNFT/briq-protocol
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
48 lines (44 loc) · 1.19 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "briq-protocol"
description = "briq NFT protocol contracts & python helpers"
version = "0.1.0"
readme = "README.md"
requires-python = "~=3.9.0"
license = "MIT"
keywords = []
authors = [
{ name = "briq", email = "[email protected]" },
]
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
]
dependencies = [
"cairo-lang>=0.10.3,<0.11.0",
"cairo-nile",
]
[project.urls]
Documentation = "https://github.com/briqNFT/briq-protocol#readme"
Issues = "https://github.com/briqNFT/briq-protocol/issues"
Source = "https://github.com/briqNFT/briq-protocol"
[tool.hatch.build]
only-include = ["briq_protocol", "docs", "tests"]
[tool.hatch.build.force-include]
"artifacts" = "briq_protocol/artifacts"
"contracts" = "briq_protocol/contracts"
[tool.hatch.envs.default]
python = "3.9"
dependencies = [
"pytest",
"pytest-asyncio",
"flake8",
"cairo-nile>=0.9"
]
[tool.hatch.envs.default.scripts]
test = "pytest"