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
27 lines (25 loc) · 724 Bytes
/
setup.py
File metadata and controls
27 lines (25 loc) · 724 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
from setuptools import setup
VERSION = '0.9.0'
setup(
name='django-react',
version=VERSION,
packages=['django_react'],
package_data={
'django_react': [
'package.json',
'render_server.js',
'renderer.js',
'templates/django_react/*.html',
]
},
install_requires=[
'django',
'django-node==3.0.0',
'django-webpack==2.1.2',
],
description='Render and bundle React components from a Django application',
long_description='Documentation at https://github.com/markfinger/django-react',
author='Mark Finger',
author_email='markfinger@gmail.com',
url='https://github.com/markfinger/django-react',
)