-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
28 lines (25 loc) · 865 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
# -*- encoding: utf-8 -*-
#
from setuptools import setup
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name='xunsearch',
version='0.0.2',
description='Python version of xunsearchd client (Python API)',
long_description=long_description,
long_description_content_type="text/markdown",
author='qaulau',
author_email='qaulau@hotmail.com',
url='https://github.com/qaulau/xunsearch-sdk-python',
packages=['xunsearch'],
classifiers = [
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Topic :: Software Development :: Libraries :: Python Modules',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
]
)