-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathsetup.py
39 lines (33 loc) · 1.14 KB
/
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
#!/usr/bin/env python
import sys
import wialon
from setuptools import setup, find_packages
extra = {}
if sys.version_info >= (3,):
extra['use_2to3'] = True
extra['convert_2to3_doctests'] = ['README.md']
CLASSIFIERS = [
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules'
]
KEYWORDS = 'wialon remote api wrapper'
setup(name='python-wialon',
version=wialon.__version__,
description="""Wialon Remote API wrapper for Python.""",
long_description=open('README.md').read(),
long_description_content_type="text/markdown",
author=wialon.__author__,
url='https://github.com/wialon/python-wialon',
packages=find_packages(),
download_url='http://pypi.python.org/pypi/python-wialon/',
classifiers=CLASSIFIERS,
keywords=KEYWORDS,
zip_safe=True,
install_requires=['simplejson', 'future'],
py_modules=['python-wialon']
)