-
Notifications
You must be signed in to change notification settings - Fork 30
/
setup.py
42 lines (38 loc) · 1.7 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
# coding: utf-8
from setuptools import setup
import os
README = os.path.join(os.path.dirname(__file__), 'README.rst')
REQUIREMENTS = os.path.join(os.path.dirname(__file__), 'requirements.txt')
if __name__ == "__main__":
setup(name='itauscraper',
description='Scraper para baixar seus extratos do Itaú com um comando.',
version='1.0',
long_description=open(README).read(),
author="Henrique Bastos", author_email="[email protected]",
license="GNU LGPLv3",
url='http://github.com/henriquebastos/itauscraper/',
keywords=['scraper', 'requests', 'lxml', 'itau', 'bank', 'finance', 'accounting'],
install_requires=open(REQUIREMENTS).readlines(),
packages=['itauscraper'],
package_dir={"itauscraper": "itauscraper"},
entry_points={
'console_scripts': [
'itauscraper = itauscraper.cli:main',
]
},
zip_safe=False,
platforms='any',
include_package_data=True,
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: Financial and Insurance Industry',
'License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)',
'Natural Language :: Portuguese (Brazilian)',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3 :: Only',
'Topic :: Office/Business :: Financial :: Accounting',
'Topic :: Utilities',
])