forked from BittyTax/BittyTax
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
68 lines (64 loc) · 2.17 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
[metadata]
name = BittyTax
version = attr: bittytax.version.__version__
author = Nano Nano Ltd
author_email = [email protected]
maintainer = Scott Green
maintainer_email = [email protected]
description = Crypto-currency tax calculator for UK tax rules. Produces a PDF report of your capital gains and income. Import your data from popular wallets and exchanges.
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/BittyTax/BittyTax
license = AGPLv3
classifiers =
Development Status :: 5 - Production/Stable
Environment :: Console
Intended Audience :: End Users/Desktop
Topic :: Office/Business :: Financial :: Accounting
License :: OSI Approved :: GNU Affero General Public License v3
Natural Language :: English
Operating System :: MacOS
Operating System :: Microsoft :: Windows
Operating System :: POSIX :: Linux
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
keywords = bittytax cryptoasset cryptocurrency cryptotax
project_urls =
Donate = https://www.paypal.com/donate?hosted_button_id=HVBQW8TBEHXLC
Twitter = https://twitter.com/bitty_tax
Discord = https://discord.com/invite/NHE3QFt
Changes = https://github.com/BittyTax/BittyTax/blob/master/CHANGELOG.md
Source = https://github.com/BittyTax/BittyTax
Tracker = https://github.com/BittyTax/BittyTax/issues
[options]
package_dir=
= src
packages = find:
python_requires = >=3.6
install_requires =
colorama
defusedxml
jinja2
openpyxl
python-dateutil
pyyaml
reportlab
requests
tqdm
xhtml2pdf <= 0.2.5; python_version <= "3.6"
xhtml2pdf; python_version > "3.6"
xlrd
xlsxwriter
[options.packages.find]
where = src
[options.package_data]
bittytax = templates/*.html, config/bittytax.conf
[options.entry_points]
console_scripts =
bittytax = bittytax.bittytax:main
bittytax_conv = bittytax.conv.bittytax_conv:main
bittytax_price = bittytax.price.bittytax_price:main