-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
32 lines (28 loc) · 873 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import os
import sys
from distutils.core import setup
required = []
setup(
name='monitor',
version='0.0.1',
description='Python Library for monitoring devices',
long_description=open('README.rst').read() + '\n\n' +
open('HISTORY.rst').read(),
author='tigeroses',
author_email='[email protected]',
usr='https://github.com/tigerRose/monitor',
packages=[
'monitor',
],
install_requires=required,
license='ISC',
classifiers=(
'Intended Audience :: Developers',
'Natural Language :: Chinese, English',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
),
)