-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
45 lines (39 loc) · 1.11 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
# -*- coding: utf-8 -*-
"""
rae
---
Api para los diccionarios de la Real Academia Española.
"""
import sys
from distutils.core import setup
extra_setup = {}
if sys.version_info >= (3,):
extra_setup['use_2to3'] = True
# extra_setup['use_2to3_fixers'] = ['your.fixers']
setup(
name='rae',
version='0.1.1',
author='Mario Rodas',
author_email='[email protected]',
url='https://github.com/marsam/rae',
py_modules=['rae'],
license='MIT License',
description='Consutla a la rae',
long_description=open('README.rst').read(),
install_requires=[
'lxml',
],
classifiers=[
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 2.5',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.1',
'Programming Language :: Python :: 3.2',
'License :: OSI Approved :: MIT License',
],
**extra_setup
)