FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
postmon-python/setup.py at master · PostmonAPI/postmon-python · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
PostmonAPI
/
postmon-python
Public
Notifications
You must be signed in to change notification settings
Fork
1
Star
5
Code
Issues
3
Pull requests
1
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
postmon-python
/
setup.py
Copy path
More file actions
More file actions
Latest commit
History
History
History
43 lines (35 loc) · 990 Bytes
Breadcrumbs
postmon-python
/
setup.py
Copy path
File metadata and controls
43 lines (35 loc) · 990 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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
try
:
import
multiprocessing
except
ImportError
:
pass
from
setuptools
import
setup
import
postmon
setup
(
name
=
'postmon'
,
version
=
postmon
.
__version__
,
description
=
'Postmon service wrapper'
,
url
=
'http://github.com/PostmonAPI/postmon-python'
,
author
=
'Iuri de Silvio'
,
author_email
=
'iurisilvio@gmail.com'
,
license
=
'MIT'
,
py_modules
=
[
'postmon'
],
install_requires
=
[
'requests>=1.0'
,
],
classifiers
=
[
'Development Status :: 3 - Alpha'
,
'Intended Audience :: Developers'
,
'License :: OSI Approved :: MIT License'
,
'Natural Language :: Portuguese (Brazilian)'
,
'Operating System :: OS Independent'
,
'Programming Language :: Python :: 2'
,
'Programming Language :: Python :: 3'
,
'Topic :: Software Development :: Libraries :: Python Modules'
,
],
tests_require
=
[
'nose>=1.0'
,
'httpretty'
,
'mock'
,
],
test_suite
=
'nose.collector'
,
)
Back
|
FazBrowse Home
|
New Git URL