-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathsetup.py
34 lines (31 loc) · 1.2 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
from setuptools import setup, find_packages
from setuptools.command.test import test
def run_tests(*args):
from wysihtml5.tests import run_tests
run_tests()
test.run_tests = run_tests
setup(
name = "django-wysihtml5",
version = "1.2b3",
packages = find_packages(),
include_package_data = True,
license = "MIT",
description = "Simple Django app that provides a Wysihtml5 rich text editor textarea widget.",
long_description = "Simple Django app that provides a Wysihtml5 rich text editor textarea widget, with a complete command toolbar to give HTML format to your documents.",
author = "Daniel Rus Morales",
author_email = "[email protected]",
maintainer = "Daniel Rus Morales",
maintainer_email = "[email protected]",
url = "http://pypi.python.org/pypi/django-wysihtml5/",
classifiers = [
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Framework :: Django',
],
test_suite = "dummy",
)