-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
34 lines (32 loc) · 1.01 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
#!/usr/bin/python
from distutils.core import setup
setup(
name='PolyClassifiedAds',
version='0.3.7',
description='A small django application for classified ads at AGEPoly.',
long_description='PolyClassifiedAds is a small django application used for classified ads at AGEPoly, the student association of EPFL.',
author='Maximilien Cuony',
author_email='theglu@theglu.org',
url='https://github.com/PolyLAN/polyclassifiedads',
download_url='https://github.com/PolyLAN/polyclassifiedads',
classifiers=[
"Development Status :: 4 - Beta",
"Framework :: Django",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
],
packages=[
'polyclassifiedads',
],
include_package_data=True,
install_requires=[
'south',
'django<1.7',
'django-bootstrap3',
'markdown',
'bleach',
'django-simple-captcha',
'django-jfu',
]
)