-
Notifications
You must be signed in to change notification settings - Fork 16
/
setup.py
42 lines (38 loc) · 1.3 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
import os
from setuptools import setup
README = os.path.join(os.path.dirname(__file__), "README.rst")
if __name__ == "__main__":
setup(
name="pyitau",
description="Scraper to download data from Itaú Internet Banking",
version="1.3.1",
long_description=open(README).read(),
author="Lucas Rangel Cezimbra",
author_email="[email protected]",
license="LGPLv2",
url="https://github.com/lucasrcezimbra/pyitau",
keywords=[
"pyitau",
"itau",
"api",
"client",
"requests",
"banking",
"bank",
"finance",
"accounting",
],
install_requires=["beautifulsoup4", "cached-property", "requests"],
packages=["pyitau"],
zip_safe=False,
include_package_data=True,
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU Lesser General Public License v2 (LGPLv2)",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3 :: Only",
],
)