-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpyproject.toml
72 lines (60 loc) · 1.52 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
[build-system]
requires = ["setuptools","setuptools_scm"]
build-backend = "setuptools.build_meta"
[tool.pylint.main]
[tool.pylint.basic]
[tool.pylint."messages control"]
disable = ["missing-function-docstring", "missing-module-docstring", "missing-class-docstring", "too-few-public-methods"]
[tool.setuptools_scm]
local_scheme = "node-and-date"
version_scheme = "no-guess-dev"
tag_regex = "^espp(?P<version>[0-9]+)$"
[tool.setuptools]
packages = ['espp2']
[tool.setuptools.package-data]
espp2 = ["data/*"]
[project]
name = "espp2"
description="A tax tool for ESPP/RSU and foreignly held shares"
requires-python = ">=3.11"
license = {text = "Apache-2.0"}
dynamic = ["version"]
dependencies = [
"pydantic",
"requests",
"simplejson", "pydantic", "pandas",
"urllib3", "python-dateutil", "uvicorn", "fastapi",
"python-multipart", "tabulate", "httpx",
"rich", "typing", "html5lib", "typer", "openpyxl",
"setuptools-scm",
]
authors = [
{ name = "Ole Troan", email = "[email protected]"},
]
readme = "README.md"
[project.urls]
repository = "https://github.com/otroan/ESPP2"
[project.scripts]
espp2 = "espp2.espp2:app"
holdinator = "espp2.holdinator:app"
[project.optional-dependencies]
dev = [
"pre-commit",
"black",
"flake8",
]
test = [
"pytest",
"pytest-cov",
]
docs = [
"sphinx",
"sphinx-rtd-theme",
]
# Or if you're using the older format with poetry:
[tool.poetry.group.dev.dependencies]
pre-commit = "^3.6.0"
pytest = "^8.0.0"
[tool.flake8]
max-line-length = 120
ignore = ["E501"]