-
Notifications
You must be signed in to change notification settings - Fork 24
/
setup.py
49 lines (41 loc) · 1.26 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
46
47
48
49
#from setuptools import setup, find_packages
from setuptools import find_packages
from distutils.core import setup
setup(
name='ureport',
version='1.0',
license="BSD",
install_requires = [
"django",
"django-nose",
'django-uni-form',
"djtables",
"django-extensions",
"python-dateutil",
"djappsettings",
'xlrd',
'psycopg2',
'django-mptt', 'requests',
],
dependency_links = [],
scripts = [],
description='Ureport deployment repository for ureport.ug',
long_description=open('README').read(),
author='UNICEF Uganda',
author_email='[email protected]',
url='http://github.com/unicefuganda/ureport',
download_url='http://github.com/unicefuganda/ureport/downloads',
include_package_data=True,
packages=find_packages(),
package_data={'ureport':['templates/*/*.html','templates/*/*/*.html','static/*/*']},
zip_safe=False,
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Framework :: Django',
],
)