forked from swiftype/swiftype-py
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
executable file
·34 lines (28 loc) · 1001 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
33
34
#!/usr/bin/env python
from setuptools import setup, find_packages
from setuptools.command.install import install
from swiftype.version import VERSION
class PostInstallMessage(install):
def run(self):
print("DEPRECATION WARNING: The swiftype package has been deprecated and replaced by elastic-site-search")
install.run(self)
setup(
name='swiftype',
version=VERSION,
description='A Deprecated Swiftype Site Search API Client for Python. - Use new elastic-site-search package instead.',
author='Swiftype',
author_email='[email protected]',
url='https://swiftype.com/',
packages=find_packages(),
install_requires=["six"],
test_suite='nose.collector',
classifiers=[
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules',
],
cmdclass={
'install': PostInstallMessage,
}
)