-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
67 lines (65 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
from setuptools import find_packages, setup
LONG_DESCRIPTION = ''
try:
with open('./README.md', 'r') as f:
LONG_DESCRIPTION = f.read()
except FileNotFoundError:
pass
setup(
name='raspapreco',
description='Pesquisador de preços',
long_description=LONG_DESCRIPTION,
version='0.0.1',
url='https://github.com/IvanBrasilico/raspa-preco',
license='MIT',
author='Ivan Brasilico',
author_email='[email protected]',
packages=find_packages(),
install_requires=[
'bs4',
'celery',
'certifi',
'chardet',
'flask',
'flask_cors',
'Flask-JWT',
'flask_restless',
'flask_sqlalchemy',
'gunicorn',
'idna',
'json-tricks',
'requests',
'SQLAlchemy',
'urllib3'
],
setup_requires=['pytest-runner'],
tests_require=['pytest'],
test_suite="tests",
package_data={
'raspapreco': ['locale/*'],
},
extras_require={
'dev': [
'coverage',
'flake8',
'isort',
'pytest',
'pytest-cov',
'pytest-mock',
'requests-mock',
'Sphinx',
'testfixtures',
],
},
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Operating System :: POSIX',
'Operating System :: Microsoft :: Windows',
'Operating System :: MacOS :: MacOS X',
'Topic :: Software Development :: User Interfaces',
'Topic :: Utilities',
'Programming Language :: Python :: 3.5',
],
)