-
Notifications
You must be signed in to change notification settings - Fork 23
/
setup.py
34 lines (30 loc) · 1.1 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
34
import os
from distutils.core import setup
from setuptools import find_packages
from django_grapesjs import __version__
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name = 'django_grapesjs',
packages = find_packages(exclude=('example*',)),
include_package_data = True,
version = __version__,
description = 'A small library for integrating the page builder "grapesjs" into django admin',
author = 'Mark Burkut',
author_email = 'burkut888mark@gmail.com',
url = 'https://github.com/gulliverbms/django_grapesjs',
long_description = read('README.rst'),
long_description_content_type = 'text/x-rst',
keywords = ['page builder'],
classifiers = [
"Framework :: Django :: 1.11",
"Framework :: Django :: 2.0",
"Natural Language :: English",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Environment :: Web Environment",
],
license='MIT',
install_requires=read('requirements.txt'),
)