forked from mintapi/mintapi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
26 lines (24 loc) · 863 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
# 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="https://github.com/mintapi/mintapi/",
version='1.54',
packages=['mintapi'],
license='The MIT License',
author='Michael Rooney',
author_email='[email protected]',
url='https://github.com/mintapi/mintapi',
install_requires=['future', 'mock', 'oathtool', 'pandas>=1.0', 'requests', 'selenium', 'selenium-requests>=1.3.3', 'xmltodict'],
entry_points=dict(
console_scripts=[
'mintapi = mintapi.api:main',
],
),
)