forked from alireza-molaee/django-webline-notifications
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
35 lines (32 loc) · 1.2 KB
/
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
31
32
33
34
35
from io import open
from distutils.core import setup
long_description = open('README.md', encoding="utf-8").read()
install_requires = [
'django>=1.8'
]
setup(
name='django-webline-notifications',
version='0.1',
packages=['webline_notifications'],
include_package_data=True,
url='https://github.com/alireza-molaee/django-webline-notifications',
license='GNU General Public License (GPL)',
author='alireza molaee',
author_email='[email protected]',
description='A simple Django app which allow you notify everything to user or users',
long_description=long_description,
install_requires=install_requires,
classifiers=[
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: GNU General Public License (GPL)',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.4',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)