-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
36 lines (31 loc) · 1.16 KB
/
setup.py
File metadata and controls
36 lines (31 loc) · 1.16 KB
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
# -*- coding: utf-8 -*-
################# To build the package and upload it ##################
# python3 setup.py sdist bdist_wheel
# twine upload dist/*
#######################################################################
from setuptools import setup
import SQL_multisearch
try:
LONG_DESCRIPTION = open('README.md').read()
except:
LONG_DESCRIPTION = u"SQL search and ranking engine in multiple fields of database table"
CLASSIFIERS=[
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python :: 3.7",
"Topic :: Education"
]
setup(name="SQL_multisearch",
version=SQL_multisearch.__version__,
description="SQL search and ranking engine in multiple fields of database table",
long_description=LONG_DESCRIPTION,
long_description_content_type="text/markdown",
author="Maxime Challon",
author_email="maxime.challon@gmail.com",
keywords="SQL search ranking sqlite",
classifiers=CLASSIFIERS,
packages=["SQL_multisearch"],
install_requires=['sqlalchemy'],
test_suite='nose.collector',
tests_require=['nose'])