-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
41 lines (37 loc) · 1.07 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
import os
from setuptools import setup, find_packages
VERSION = '1.0.0'
f = open(os.path.join(os.path.dirname(__file__), 'README.rst'))
readme = f.read()
f.close()
setup(
name='django_redux',
version=VERSION,
description='A re-usable bridge between Django channels and Redux Edit',
long_description=readme,
author='Flavio Curella',
author_email='[email protected]',
url='https://github.com/channels-frontend/django_redux',
include_package_data=True,
packages=find_packages(exclude=['example', 'tests']),
zip_safe=False,
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Framework :: Django',
],
install_requires=[
"channels",
"Django",
],
setup_requires=[
"channels-redis",
"pytest-runner",
"pytest-asyncio",
"pytest-django",
],
)