-
Notifications
You must be signed in to change notification settings - Fork 18
/
setup.py
24 lines (23 loc) · 811 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
# -*- coding: utf-8 -*-
from distutils.core import setup
from setuptools import find_packages
setup(
name='django-addressbook',
version='0.1.33',
author=u'Ben Lee',
author_email='ben86lee@gmail.com',
packages=find_packages(),
include_package_data=True,
install_requires = [
'south',
'vobject',
'django-crispy-forms',
'easy-thumbnails',
'django-localflavor-us',
],
url='https://github.com/iiilx/addressbook',
license='BSD license, see LICENSE.txt',
description='A django app that allows users to create contact groups and contacts, as well as views for displaying a contact in hcard format, downloading a vcard for the contact, a gravatar, and a QR code.',
long_description=open('README.rst').read(),
zip_safe=False,
)