-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
74 lines (68 loc) · 2.03 KB
/
pyproject.toml
File metadata and controls
74 lines (68 loc) · 2.03 KB
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
66
67
68
69
70
71
72
73
74
[tool.black]
line-length = 100
target-version = ["py311", "py312"]
exclude = ".git|__pycache__|build|dist"
[project]
name = "calorieapp"
version = "1.1.0"
description = "Mobile cryptocurrency wallet and food tracking application for CalorieToken on XRPL"
readme = "README.md"
requires-python = ">=3.12"
license = {text = "Custom Dual License - See LICENSE file"}
authors = [
{name = "CalorieToken", email = "info@calorietoken.net"}
]
maintainers = [
{name = "CalorieToken Development Team", email = "info@calorietoken.net"}
]
keywords = [
"blockchain",
"cryptocurrency",
"wallet",
"xrpl",
"calorie",
"food-tracking",
"mobile",
"kivy",
"kivymd",
"testnet"
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: End Users/Desktop",
"License :: Other/Proprietary License",
"Operating System :: OS Independent",
"Operating System :: Android",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
"Topic :: Office/Business :: Financial",
"Topic :: Office/Business :: Financial :: Cryptocurrency Wallet",
"Topic :: Health :: Nutrition",
"Environment :: Mobile",
]
[project.urls]
Homepage = "https://calorietoken.net"
Repository = "https://github.com/CalorieToken/CalorieAppTestnet"
Documentation = "https://github.com/CalorieToken/CalorieAppTestnet/blob/main/docs/README.md"
"Bug Tracker" = "https://github.com/CalorieToken/CalorieAppTestnet/issues"
Whitepaper = "https://calorietoken.net/index.php/whitepaper/"
Twitter = "https://twitter.com/CalorieToken"
Telegram = "https://t.me/+7YxaKdQYWNA0NDA0"
Discord = "https://discord.gg/hcjJgdyDGd"
[tool.coverage.run]
branch = true
source = ["src"]
[tool.coverage.report]
show_missing = true
skip_covered = true
[tool.flake8]
max-line-length = 100
extend-ignore = ["E203", "W503", "E501"]
exclude = [".git", "__pycache__", "build", "dist"]
per-file-ignores = [
"src/screens/*.py:E402,F401,F811,F841,E722,F821,F541"
]
[tool.isort]
profile = "black"
line_length = 100
src_paths = ["src", "tests"]