-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·25 lines (24 loc) · 829 Bytes
/
setup.py
File metadata and controls
executable file
·25 lines (24 loc) · 829 Bytes
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
#!/usr/bin/env python
from setuptools import setup, find_packages
setup(
name='django-cnote',
version='0.3.4',
description='Django cnotes provides a simple cookie based user notification system.',
author="Sean O'Connor",
author_email='sean.b.oconnor@gmail.com',
url='http://github.com/SeanOC/django-cnotes/tree/master',
packages=find_packages(),
keywords='django,middleware,cookies,messaging,notifications',
license='BSD',
classifiers=[
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Framework :: Django',
],
include_package_data=True,
zip_safe=False,
install_requires=['setuptools'],
)