-
Notifications
You must be signed in to change notification settings - Fork 88
/
setup.py
28 lines (27 loc) · 895 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
25
26
27
28
from setuptools import setup, find_packages
setup(
name='django-friends',
version='0.1.5',
description='friendship, contact and invitation management for the Django web framework',
author='James Tauber',
author_email='[email protected]',
url='http://github.com/jtauber/django-friends/',
packages=find_packages(exclude=['friendsdev']),
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Framework :: Django',
],
include_package_data = True,
package_data = {
'friends': [
'templates/notification/*/*.html',
'templates/notification/*/*.txt',
]
},
zip_safe=False,
)