-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
47 lines (43 loc) · 1.45 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
40
41
42
43
44
45
46
47
from __future__ import unicode_literals
from __future__ import print_function
from __future__ import division
from __future__ import absolute_import
from setuptools import setup, find_packages
import hysds_commons
def readme():
with open("README.md") as f:
return f.read()
setup(
name='hysds_commons',
version=hysds_commons.__version__,
description=hysds_commons.__description__,
long_description_content_type="text/markdown",
long_description=readme(),
url=hysds_commons.__url__,
packages=find_packages(),
include_package_data=True,
zip_safe=False,
install_requires=[
'elasticsearch>=7.0.0,<7.14.0',
'opensearch-py>=2.3.0,<3.0.0',
'requests>=2.7.0',
'future>=0.17.1',
"jsonschema>=3.0.1",
"shapely>=1.8.2"
],
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Operating System :: POSIX :: Linux",
"Operating System :: Unix",
"Operating System :: MacOS :: MacOS X",
],
)