-
Notifications
You must be signed in to change notification settings - Fork 54
/
setup.py
38 lines (33 loc) · 930 Bytes
/
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
34
35
36
37
38
AUTHOR = 'Vsevolod Novikov'
AUTHOR_EMAIL = 'nnseva@gmail.com'
URL = 'https://github.com/nnseva/django-jsoneditor'
import jsoneditor
from setuptools import setup, find_packages
description = 'Django JSON Editor'
with open('README.rst') as f:
long_description = f.read()
setup(
name = 'django-jsoneditor',
version = jsoneditor.__version__,
description = description,
author = AUTHOR,
author_email = AUTHOR_EMAIL,
url = URL,
long_description = long_description,
packages = [
'jsoneditor',
'jsoneditor.fields'
],
package_data = {
'jsoneditor':[
'static/jsoneditor/*.js',
'static/jsoneditor/*.css',
'static/jsoneditor/img/*',
'static/django-jsoneditor/*.js',
'static/django-jsoneditor/*.css',
]
},
include_package_data = True,
zip_safe = False,
install_requires=['packaging']
)