forked from markfinger/python-react
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (26 loc) · 866 Bytes
/
Copy pathsetup.py
File metadata and controls
28 lines (26 loc) · 866 Bytes
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',
url='https://github.com/markfinger/django-react',
)