- Notifications
You must be signed in to change notification settings - Fork 115
Expand file tree
/
Copy pathsetup.py
More file actions
Latest commit
17 lines (16 loc) · 516 Bytes
/
Copy pathsetup.py
File metadata and controls
17 lines (16 loc) · 516 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
fromsetuptoolsimportsetup
importreact
setup(
name='react',
version=react.__version__,
packages=['react'],
install_requires=[
'requests>=2.5.0',
'optional-django==0.3.0',
],
description='Server-side rendering of React components with data from your Python system',
long_description='Documentation at https://github.com/markfinger/python-react',
author='Mark Finger',
author_email='markfinger@gmail.com',
url='https://github.com/markfinger/python-react',
)