-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
43 lines (35 loc) · 990 Bytes
/
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
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='[email protected]',
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',
)