-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathsetup.py
30 lines (28 loc) · 944 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
30
#!/usr/bin/env python
from setuptools import setup, find_packages
VERSION = __import__('notifier').get_version()
setup(
name="django-notifier",
version=VERSION,
author='Siddharth Doshi',
author_email='scdoshi@gmail.com',
description=("User and Group Notifications for Django"),
long_description=open('README.rst').read(),
packages=find_packages(),
include_package_data=True,
url="http://github.com/scdoshi/django-notifier/",
license='Simplified BSD',
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules'
],
install_requires=[
"Django >= 1.4.0",
],
)