Merge branch 'master' into guardian
[e_cidadania.git] / setup.py
blob71410af8d9555995b484b59f5f258df0ad6f5124
1 import os
2 import re
3 from setuptools import setup, find_packages
6 setup(
7 name = 'e-cidadania',
8 description = ("e-cidadania is a project to develop an open source "
9 "application for citizen participation, usable by "
10 "associations, companies and administrations."),
11 version = '0.1.5',
12 packages = find_packages(exclude=['parts']),
13 author = 'Oscar',
14 url = 'http://ecidadania.org',
15 license = 'GPLv2',
16 install_requires = [
17 'django',
18 'PIL',
19 'django-grappelli',
20 'feedparser',
21 'python-dateutil==1.5',
22 'pyyaml',
24 tests_require=[
25 'nose',
26 'django-nose',
27 'coverage',
28 'nose-cov',
30 entry_points = {'console_scripts': ['check-quality = tests.run:main',
33 include_package_data = True,
34 zip_safe = False,