forked from decred/tinydecred
-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
58 lines (53 loc) · 1.49 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
50
51
52
53
54
55
56
57
58
[tool.poetry]
name = "tinywallet"
version = "0.0.1"
description = "A Python 3 Decred wallet."
license = "ISC"
homepage = "https://decred.org/"
repository = "https://github.com/decred/tinydecred/"
documentation = "https://github.com/decred/tinydecred/blob/master/tinywallet"
authors = [
"Brian Stafford <buck@decred.org>",
"The Decred developers <https://decred.org/community>"
]
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: X11 Applications :: Qt",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: ISC License (ISCL)",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Topic :: Office/Business :: Financial"
]
[tool.poetry.dependencies]
python = "^3.6"
decred = {path = "../decred/"}
pyqt5 = "=5.12.3"
[tool.poetry.dev-dependencies]
pytest = "^5.3.5"
pytest-cov = "^2.8.1"
flake8 = "^3.7.9"
black = "^19.10b0"
isort = "^4.3.21"
Cython = "^0.29.16"
[tool.poetry.scripts]
tinywallet = "tinywallet.app:main"
[tool.isort]
atomic = "true"
combine_as_imports = "true"
combine_star = "true"
filter_files = "true"
force_grid_wrap = 0
force_sort_within_sections = "true"
include_trailing_comma = "true"
line_length = 88
lines_after_imports = 2
multi_line_output = 3
use_parentheses = "true"
virtual_env = "./.venv/"
[build-system]
requires = ["poetry>=1.0.3"]
build-backend = "poetry.masonry.api"