forked from binaryage/firelogger.py
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·25 lines (22 loc) · 985 Bytes
/
setup.py
File metadata and controls
executable file
·25 lines (22 loc) · 985 Bytes
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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from distutils.core import setup
from firepython import __version__
setup(name='firepython',
version=__version__,
description='Python logging console integrated into Firebug',
author='Antonin Hildebrand',
author_email='antonin@hildebrand.cz',
url='http://firepython.binaryage.com',
packages=['firepython'],
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'],
)