forked from toscawidgets/tw2.tinymce
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
59 lines (57 loc) · 1.68 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
from setuptools import setup, find_packages
# Ridiculous as it may seem, we need to import multiprocessing and
# logging here in order to get tests to pass smoothly on python 2.7.
# Thanks RJ!
import multiprocessing
import logging
setup(
name='tw2.tinymce',
version='2.0.b5',
description='TinyMCE for ToscaWidgets 2',
author='Greg Jurman',
author_email='gdj2214@rit.edu',
url='https://github.com/toscawidgets/tw2.tinymce',
install_requires=[
"tw2.core",
"tw2.forms",
'Mako',
'formencode',
## Add other requirements here
# "Genshi",
],
packages=find_packages(exclude=['ez_setup', 'tests']),
namespace_packages = ['tw2'],
zip_safe=False,
include_package_data=True,
tests_require = [
'nose',
'BeautifulSoup',
'Genshi',
'mako',
# formencode isn't actually needed, but is just here to patch up
# tw2.forms,
'formencode',
'strainer',
'sieve',
'WebTest'
],
test_suite = 'nose.collector',
entry_points="""
[tw2.widgets]
# Register your widgets so they can be listed in the WidgetBrowser
widgets = tw2.tinymce
""",
keywords = [
'toscawidgets.widgets',
],
classifiers = [
'Development Status :: 3 - Alpha',
'Environment :: Web Environment',
'Environment :: Web Environment :: ToscaWidgets',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Software Development :: Widget Sets',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python',
],
)