-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
35 lines (33 loc) · 942 Bytes
/
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
import os
import re
from setuptools import setup, find_packages
setup(
name = 'e-cidadania',
description = ("e-cidadania is a project to develop an open source "
"application for citizen participation, usable by "
"associations, companies and administrations."),
version = '0.1.5',
packages = find_packages(exclude=['parts']),
author = 'Oscar',
url = 'http://ecidadania.org',
license = 'GPLv2',
install_requires = [
'django',
'PIL',
'django-grappelli',
'feedparser',
'python-dateutil==1.5',
'pyyaml',
],
tests_require=[
'nose',
'django-nose',
'coverage',
'nose-cov',
],
entry_points = {'console_scripts': ['check-quality = tests.run:main',
],
},
include_package_data = True,
zip_safe = False,
)