FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
firepython/setup.py at master · ngamita/firepython · GitHub
ngamita
/
firepython
Public
forked from
binaryage/firelogger.py
Notifications
You must be signed in to change notification settings
Fork
1
Star
1
Code
Pull requests
0
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
firepython
/
setup.py
Copy path
More file actions
More file actions
Latest commit
History
History
History
executable file
·
25 lines (22 loc) · 969 Bytes
Breadcrumbs
firepython
/
setup.py
Copy path
File metadata and controls
executable file
·
25 lines (22 loc) · 969 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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 to Firebug'
,
author
=
'Antonin Hildebrand'
,
author_email
=
'antonin@hildebrand.cz'
,
url
=
'http://github.com/darwin/firepython'
,
packages
=
[
'firepython'
],
classifiers
=
[
'Development Status :: 3 - Alpha'
,
'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'
],
)
Back
|
FazBrowse Home
|
New Git URL