-
Notifications
You must be signed in to change notification settings - Fork 38
/
setup.py
59 lines (56 loc) · 1.98 KB
/
setup.py
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
from os import path
from setuptools import find_packages, setup
with open(path.join(path.dirname(__file__), "README.md")) as readme:
LONG_DESCRIPTION = readme.read()
setup(
name="beancount_reds_importers",
use_scm_version=True,
setup_requires=["setuptools_scm"],
description="Importers for various institutions for Beancount",
long_description=LONG_DESCRIPTION,
long_description_content_type="text/markdown",
url="https://github.com/redstreet/beancount_reds_importers",
author="Red Street",
author_email="redstreet@users.noreply.github.com",
keywords="importer ingestor beancount accounting",
license="GPL-3.0",
packages=find_packages(),
include_package_data=True,
extras_require={
"dev": [
"ruff",
"isort",
]
},
install_requires=[
"Click >= 7.0",
"beancount >=2.3.5,<3.0.0",
"click_aliases >= 1.0.1",
"dateparser >= 1.2.0",
"ofxparse >= 0.21",
"openpyxl >= 3.0.9",
"packaging >= 20.3",
"pdfplumber>=0.11.0",
"petl >= 1.7.4",
"tabulate >= 0.8.9",
"tqdm >= 4.64.0",
],
entry_points={
"console_scripts": [
"ofx-summarize = beancount_reds_importers.util.ofx_summarize:summarize",
"bean-download = beancount_reds_importers.util.bean_download:cli",
"reds-ibkr-flexquery-download = beancount_reds_importers.importers.ibkr.flexquery_download:flexquery_download",
]
},
zip_safe=False,
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Financial and Insurance Industry",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Natural Language :: English",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.7",
"Topic :: Office/Business :: Financial :: Accounting",
"Topic :: Office/Business :: Financial :: Investment",
],
)