-
Notifications
You must be signed in to change notification settings - Fork 117
Expand file tree
/
Copy pathpyproject.toml
More file actions
49 lines (44 loc) · 1.2 KB
/
pyproject.toml
File metadata and controls
49 lines (44 loc) · 1.2 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
[build-system]
requires = ["setuptools>=61.2"]
build-backend = "setuptools.build_meta"
[project]
name = "csv2ofx"
version = "0.34.2"
description = "converts a csv file of transactions to an ofx or qif file"
readme = "README.md"
authors = [
{ name = "Reuben Cummings", email = "reubano@gmail.com" }
]
maintainers = [
{ name = "Jason R. Coombs", email = "jaraco@jaraco.com" }
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Environment :: Console",
"Topic :: Software Development :: Libraries :: Python Modules",
"Intended Audience :: Developers",
]
dependencies = [
"python-dateutil>=2.7.2,<3.0.0",
"requests>=2.18.4,<3.0.0",
"meza>=0.47.0,<0.48.0",
]
requires-python = ">=3.9"
[project.urls]
Source = "https://github.com/reubano/csv2ofx"
[project.scripts]
csv2ofx = "csv2ofx.main:run"
[project.optional-dependencies]
test = [
"pytest",
"pytest-enabler",
"pytest-ruff",
"freezegun",
]
[tool.setuptools]
packages = ["csv2ofx", "csv2ofx.mappings"]