-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
65 lines (58 loc) · 1.11 KB
/
setup.cfg
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
[metadata]
name = ghost-token
description = Ghost token
author = Ago loves Nafta
author_email = [email protected]
license = MIT
long_description = file: README.md
long_description_content_type = text/x-markdown; charset=UTF-8
platforms = any
[options]
zip_safe = False
packages = find_namespace:
include_package_data = True
package_dir =
=contracts
python_requires = >=3.7
install_requries =
cairo-lang=0.9.0
cairo-nile=0.4.0
eth-brownie>=1.10.0,<2.0.0
web3
starknet.py
flask
flask-cors
[options.packages.find]
where = contracts
exclude =
tests
[options.extras_require]
testing =
setuptools
tox
pytest
hypothesis
[tool:pytest]
addopts =
--verbose
norecursedirs =
dist
build
.tox
testpaths = tests
[tool:isort]
profile = black
[flake8]
# Some sane defaults for the code style checker flake8
max_line_length = 88
extend_ignore = E203, W503
# ^ Black-compatible
# E203 and W503 have edge cases handled by black
exclude =
.tox
build
dist
.eggs
per_file_ignores =
# ignore docstrings in tests
tests/*:D100,D101,D102,D103,D104,D105,D106,D107