-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathsetup.py
29 lines (25 loc) · 888 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
import os
from setuptools import setup
README = open(os.path.join(os.path.dirname(__file__), 'README.rst')).read()
os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir)))
setup(
name='django-trumbowyg',
version='2.0.1',
packages=['trumbowyg'],
include_package_data=True,
install_requires=[],
author='sandino',
author_email='vdjangofan@gmail.com',
url='https://github.com/sandino/django-trumbowyg',
license='The MIT License (MIT)',
description='Trumbowyg (WYSIWYG editor) integration app for Django admin.',
long_description=README,
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Framework :: Django",
]
)