-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
34 lines (31 loc) · 1.12 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
# coding=utf-8
from setuptools import setup
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
version = '0.1.20'
description = 'CloverSearch搜索引擎的Django模块,使用起来超级方便!'
update = '优化建立索引、搜索性能,测试性能提高10倍以上,但是受限于Python语言的性能,数据量大的时候性能还是不够理想,有待进一步优化。'
description = '{}。版本[{}]更新内容:{}'.format(description, version, update)
setup(
name='cloversearch',
version=version,
packages=setuptools.find_packages(),
install_requires=[
'jieba>=0.39',
'django',
'ujson'
],
url='https://github.com/Deali-Axy/CloverSearch',
# license='GPLv3',
author='DealiAxy',
author_email='[email protected]',
description=description,
long_description=long_description,
long_description_content_type="text/markdown",
classifiers=[
"Programming Language :: Python :: 3.6",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
],
)