-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
45 lines (40 loc) · 1.3 KB
/
Copy pathpyproject.toml
File metadata and controls
45 lines (40 loc) · 1.3 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
[build-system]
requires = ["setuptools>=61"]
build-backend = "setuptools.build_meta"
[project]
name = "tastyworksTaxes"
version = "0.1.0"
description = "German tax helper for TastyTrade/Tastyworks transaction exports"
readme = "README.md"
requires-python = ">=3.10"
license = { text = "MIT" }
authors = [
{ name = "avion23" },
]
keywords = ["tax", "germany", "tastytrade", "tastyworks", "fifo", "options"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Financial and Insurance Industry",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Office/Business :: Financial :: Accounting",
]
dependencies = [
"pandas>=3.0.3",
"currencyconverter>=0.18.18",
"dataclasses_json>=0.6.7",
]
[project.optional-dependencies]
test = ["pytest>=9.0.3"]
[project.urls]
Homepage = "https://github.com/avion23/tastyworksTaxes"
Repository = "https://github.com/avion23/tastyworksTaxes"
Issues = "https://github.com/avion23/tastyworksTaxes/issues"
[project.scripts]
tastyworks-taxes = "tastyworksTaxes.main:main"
[tool.pytest.ini_options]
testpaths = ["test"]