-
Notifications
You must be signed in to change notification settings - Fork 43
/
setup.cfg
85 lines (80 loc) · 2.62 KB
/
setup.cfg
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
[metadata]
name = dali-rp2
version = 0.6.12
description = Data loader and input generator for RP2 (https://pypi.org/project/rp2/), the privacy-focused, free, non-commercial, open-source, community-driven cryptocurrency tax calculator: DaLI removes the need to manually prepare RP2 input files. Just like RP2, DaLI is also free, open-source and it prioritizes user privacy.
long_description_content_type = text/markdown
long_description = file: README.md, CHANGELOG.md
keywords = accounting, altcoin, bitcoin, BTC, capital gains, cost basis, crypto, cryptocurrency, data loader, DeFi, ETH, ethereum, exchange, finance, form 8949, NFT, privacy, wallet, tax
license = Apache License 2.0
author = eprbell
url = https://github.com/eprbell/dali-rp2
classifiers =
Development Status :: 4 - Beta
Intended Audience :: End Users/Desktop
License :: OSI Approved :: Apache Software License
Operating System :: OS Independent
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
Topic :: Office/Business :: Financial :: Accounting
Topic :: Utilities
Typing :: Typed
project_urls =
Source Code = https://github.com/eprbell/dali-rp2
Developer Documentation = https://github.com/eprbell/dali-rp2/blob/main/README.dev.md
User Documentation = https://github.com/eprbell/dali-rp2/blob/main/README.md
Contact = https://eprbell.github.io/eprbell/about.html
# vcpy > 4.4.0 is only compatible with Python 3.10+
[options]
package_dir =
= src
packages = find:
install_requires =
backports-datetime-fromisoformat>=2.0.3
ccxt==3.0.79
Historic-Crypto>=0.1.6
jsonschema>=3.2.0
pandas
prezzemolo>=0.0.4
progressbar2>=4.2.0
pyexcel-ezodf>=0.3.4
pytest-recording==0.13.0
python-dateutil>=2.8.2
pytz>=2021.3
requests>=2.26.0
rp2>=1.7.1
vcrpy==4.4.0
[options.extras_require]
dev =
autopep8
bandit
black
bumpversion
flake8
isort
mypy
pep8
pre-commit
pylint
pytest
pytest-mock
rope
types-jsonschema
types-python-dateutil
types-requests
[options.packages.find]
where = src
include_package_data = True
zip_safe = False
python_requires = >=3.8
[options.package_data]
dali = py.typed, data/*.ods
[options.entry_points]
console_scripts =
dali_es = dali.plugin.country.es:dali_entry
dali_generic = dali.plugin.country.generic:dali_entry
dali_ie = dali.plugin.country.ie:dali_entry
dali_jp = dali.plugin.country.jp:dali_entry
dali_us = dali.plugin.country.us:dali_entry