forked from openpolis/open_municipio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
44 lines (39 loc) · 1.33 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
#!/usr/bin/env python
from distutils.core import setup
import os
REPO_ROOT = os.path.abspath(os.path.dirname(__file__))
PROJECT_ROOT = os.path.join(REPO_ROOT, 'open_municipio')
VERSION_FILE_PATH = os.path.join(PROJECT_ROOT, 'VERSION')
setup(
name = 'OpenMunicipio',
version = open(VERSION_FILE_PATH).read().strip(),
description = """
A web platform for increasing transparency in italian municipalities.
""",
author='OpenPolis & InformaEtica',
author_email='[email protected]',
url='http://openpolis.github.com/open_municipio/',
packages=['open_municipio'],
install_requires=[
"Django == 1.4.5",
"South >= 0.7.3",
"django-extensions",
"poster",
"BeautifulSoup",
"PIL",
"pysolr",
"lxml == 2.3.5",
"sorl-thumbnail",
"docutils",
"django-tinymce",
],
classifiers=['Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU Affero General Public License v3',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Javascript',
]
)