forked from barszczmm/django-easy-friends
-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
29 lines (27 loc) · 942 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
29
from setuptools import setup, find_packages
setup(
name = "django-easy-friends",
version = "0.2.dev1",
description = "friendship, friendship invitation and friendship suggestion management for the Django web framework",
author = "Maciej Marczewski",
author_email = "maciej@marczewski.net.pl",
url = "http://github.com/barszczmm/django-easy-friends/",
packages = find_packages(),
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,
)