-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
109 lines (94 loc) · 2.63 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
[build-system]
requires = ['hatchling', 'hatch-vcs', 'hatch-fancy-pypi-readme']
build-backend = 'hatchling.build'
[project]
name = 'monopyly'
authors = [
{ name = 'Mitch Negus', email = '[email protected]' },
]
description = 'A homemade personal finance manager.'
license = { text = 'GNU GPLv3' }
requires-python = '>=3.10,<3.11'
dependencies = [
'authanor==1.1.0',
'Flask==3.0.3',
'Flask-WTF==1.2.1',
'fuisce==1.0.2',
'gunicorn==22.0.0',
'Markdown==3.6',
'nltk==3.8.1',
'python-dateutil==2.9.0',
'rich==13.7.1',
'SQLAlchemy==2.0.29',
]
keywords = [
'Finance',
'Personal Finance',
]
classifiers = [
'Development Status :: 3 - Alpha',
'Environment :: Web Environment',
'Framework :: Flask',
'Intended Audience :: End Users/Desktop',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Office/Business :: Financial',
'Topic :: Office/Business :: Financial :: Accounting',
'Topic :: Office/Business :: Financial :: Spreadsheet',
]
dynamic = ['readme', 'version']
[project.scripts]
monopyly = 'monopyly.cli.launch:main_cli'
[project.urls]
Download = 'https://pypi.org/project/monopyly'
Homepage = 'http://monopyly.com'
Repository = 'https://github.com/mitchnegus/monopyly'
Changelog = 'https://github.com/mitchnegus/monopyly/blob/main/CHANGELOG.md'
[tool.hatch.version]
source = 'vcs'
[tool.hatch.build.targets.sdist]
include = [
'/README.md',
'/monopyly',
]
exclude = [
'*.pyc',
]
[tool.hatch.build.hooks.vcs]
version-file = 'monopyly/_version.py'
[tool.hatch.metadata.hooks.fancy-pypi-readme]
content-type = 'text/markdown'
[[tool.hatch.metadata.hooks.fancy-pypi-readme.fragments]]
path = 'monopyly/README.md'
[[tool.hatch.metadata.hooks.fancy-pypi-readme.substitutions]]
pattern = 'src="((?!https?:\/\/)\S+?)"'
replacement = 'src="https://raw.githubusercontent.com/mitchnegus/monopyly/main/\1"'
[[tool.hatch.metadata.hooks.fancy-pypi-readme.substitutions]]
pattern = '\[(.+?)\]\(((?!https?://)\S+?)\)'
replacement = '[\1](https://github.com/mitchnegus/monopyly/blob/main/\g<2>)'
[tool.pytest.ini_options]
addopts = [
'--import-mode=importlib',
]
pythonpath = ["tests/helpers"]
norecursedirs = ["tests/helpers"]
filterwarnings = [
'ignore:INSECURE:UserWarning',
]
[tool.coverage.run]
omit = [
'tests/*',
'monopyly/_version.py',
]
[tool.coverage.report]
exclude_lines = [
'raise NotImplementedError',
]
[tool.black]
force-exclude = 'monopyly/_version.py'
[tool.isort]
profile = 'black'
src_paths = ['monopyly', 'tests']
known_local_folder = ['test_helpers', 'test_tag_helpers']