Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Latest commit

 

History

History
History
28 lines (26 loc) · 866 Bytes

File metadata and controls

28 lines (26 loc) · 866 Bytes
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
from setuptools import setup
import django_react
setup(
name='django-react',
version=django_react.VERSION,
packages=['django_react', 'django_react.services'],
package_data={
'django_react': [
'services/package.json',
'services/render.js',
]
},
install_requires=[
'django-node==4.0.0',
'django-webpack==3.1.0',
'optional-django==0.2.1'
],
description='Render and bundle React components from a Django application',
long_description='''
django-react is now deprecated and has been replaced by https://github.com/markfinger/python-react
Documentation for django-react is available at https://github.com/markfinger/python-react/tree/0.11.0
''',
author='Mark Finger',
author_email='markfinger@gmail.com',
url='https://github.com/markfinger/django-react',
)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.