forked from binaryage/firelogger.py
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path_setup_common.py
More file actions
43 lines (41 loc) · 1.42 KB
/
_setup_common.py
File metadata and controls
43 lines (41 loc) · 1.42 KB
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
import firepython
SETUP_ARGS = dict(
name='FirePython',
version=firepython.__version__,
description='Python logging console integrated into Firebug',
long_description=firepython.__doc__,
author='Antonin Hildebrand',
author_email='[email protected]',
url='http://firelogger.binaryage.com',
packages=['firepython'],
py_modules=['gprof2dot'], #XXX remove when easy_install-able
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Bug Tracking',
'Topic :: Software Development :: Quality Assurance',
'Topic :: Software Development :: Testing',
'Topic :: System :: Logging',
],
install_requires=['jsonpickle'],
license='BSD',
platforms=['any'],
test_suite='nose.collector',
zip_safe=True,
entry_points={
'console_scripts': [
'firepython-demo-app = firepython.demo:main',
'firepython-graphviz = firepython.mini_graphviz:main',
],
'paste.filter_factory': [
'main = firepython.middleware:paste_filter_factory',
],
'paste.filter_factory': [
'main = firepython.middleware:paste_filter_factory',
],
}
)