-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
42 lines (41 loc) · 1.02 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
try:
from setuptools import setup, find_packages
except ImportError:
from ez_setup import use_setuptools
use_setuptools()
from setuptools import setup, find_packages
setup(name='agenda',
version='1.2.0',
description="",
long_description="",
classifiers=[],
keywords='',
author='Mathieu Leduc-Hamel',
author_email="[email protected]",
license='',
packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
include_package_data=True,
zip_safe=False,
install_requires=[
'babel',
'bumpversion',
'django==1.6.5',
'django-recaptcha',
'reindent',
'requests',
'simplejson',
'South',
'twitter',
'unidecode',
'vobject',
'werkzeug'
],
entry_points={
'django.apps': [
'agenda = agenda'
],
'console_scripts': [
'debug = agenda.command:debug'
],
},
)