-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
42 lines (38 loc) · 1.35 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
36
37
38
39
40
41
42
from setuptools import setup, find_packages
import os
version = '1.1'
base_dir = os.path.dirname(__file__)
setup(
name='django-channels-notifications',
version=version,
description='Django Channels Notifications',
long_description=open(os.path.join(base_dir, "README.md")).read(),
long_description_content_type="text/markdown",
url='https://github.com/Abdelhadi92/django-channels-notifications',
classifiers=[
'Environment :: Web Environment',
'Framework :: Django',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Development Status :: 5 - Production/Stable',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
],
keywords='Django Channels Notifications',
author='Abdelhadi Abu-Shamleh',
author_email='abushamleh92@gmail.com',
license='BSD',
packages=find_packages(exclude=['ez_setup']),
include_package_data=True,
zip_safe=False,
dependency_links=[],
install_requires=[
'setuptools',
'jsonfield',
'requests'
]
)