forked from mintapi/mintapi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
37 lines (35 loc) · 1017 Bytes
/
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
# new version to pypi (pip install twine):
# rm -rf dist && python setup.py sdist && python -m twine upload dist/*
import os
import setuptools
readme = os.path.join(os.path.dirname(__file__), "README.md")
with open(readme, "r") as fh:
long_description = fh.read()
setuptools.setup(
name="mintapi",
description="a screen-scraping API for Mint.com",
long_description=long_description,
long_description_content_type="text/markdown",
version="2.8",
packages=["mintapi"],
license="The MIT License",
author="Michael Rooney",
author_email="[email protected]",
url="https://github.com/mintapi/mintapi",
install_requires=[
"configargparse",
"oathtool",
"pandas>=1.0",
"requests",
"selenium>=4.3.0,<5.0.0",
"selenium-requests>=2.0.0",
"xmltodict",
"keyring",
],
python_requires=">=3.6",
entry_points=dict(
console_scripts=[
"mintapi = mintapi.cli:main",
],
),
)