-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
41 lines (37 loc) · 1.1 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
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
from contratacion import __version__
setup(
name='contratacion',
version=__version__,
description='Contrataciondelestado.es web data scraper',
author='Javier Santacruz',
author_email='javier.santacruz.lc@gmail.com',
url='https://github.com/jvrsantacruz/contratacion',
packages=find_packages(exclude=['spec', 'spec.*']),
install_requires=[
'SQLAlchemy',
'booby',
'cssselect',
'docopt',
'pyquery',
'python-dateutil',
'requests',
'simplekv',
'Flask',
'Flask-RESTful'
],
classifiers=[
'Environment :: Console',
'Operating System :: POSIX',
'Development Status :: 3 - Alpha',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
],
platforms=['Unix'],
entry_points={
'console_scripts': ['contratacion = contratacion.cli:main']
}
)