-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
38 lines (34 loc) · 1.09 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "magicbeans"
version = "0.0.1"
authors = [
{ name="Eric Altendorf", email="ericaltendorf@gmail.com" },
]
description = "Tools for importing crypto records to Beancount."
readme = "README.md"
requires-python = ">=3.7"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v2 (GPLv2)",
"Operating System :: OS Independent",
]
dependencies = [
"pytz",
"tabulate",
"pyfiglet",
"pyyaml",
"pylatex",
"requests",
# Depend on custom fork and branch with required features until they are
# merged into beancount upstream.
"beancount @ git+https://github.com/ericaltendorf/beancount@magicbeans-features",
"beangulp @ git+https://github.com/beancount/beangulp@master",
"beanquery @ git+https://github.com/beancount/beanquery@master",
"beancount-reds-plugins",
]
[project.urls]
"Homepage" = "https://github.com/ericaltendorf/magicbeans"
"Bug Tracker" = "https://github.com/ericaltendorf/magicbeans/issues"