-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathsetup.py
33 lines (28 loc) · 1.33 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
# -*- coding: utf-8 -*-
# DO NOT EDIT THIS FILE!
# This file has been autogenerated by dephell <3
# https://github.com/dephell/dephell
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
readme = ''
setup(
long_description=readme,
name='django_react_admin',
version='0.1.1',
description='Creates viewsets and serializers for models in your admin site to use with react-admin',
python_requires='==3.*,>=3.8.0',
project_urls={
"homepage": "https://github.com/pawnhearts/django_react_admin"},
author='ph',
author_email='[email protected]',
packages=['django_react_admin', 'django_react_admin.management',
'django_react_admin.management.commands', 'django_react_admin.migrations', 'django_react_admin.static'],
package_dir={"": "."},
package_data={"django_react_admin": ["src/*.js", "src/*.json", "src/*.lock", "src/*.md", "src/public/*.html", "src/public/*.ico", "src/public/*.json",
"src/public/*.png", "src/public/*.txt", "src/src/*.css", "src/src/*.js", "src/src/*.svg", "templates/django_react_admin/*.html"]},
install_requires=['django==3.*,>=3.0.0',
'django-filter==2.*,>=2.2.0', 'djangorestframework==3.*,>=3.10.0'],
extras_require={"dev": ["pytest==3.*,>=3.0.0"]},
)