forked from vesoft-inc/nebula-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
34 lines (28 loc) · 879 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
# Copyright (c) 2020 vesoft inc. All rights reserved.
#
# This source code is licensed under Apache 2.0 License.
from setuptools import setup, find_packages
from pathlib import Path
base_dir = Path(__file__).parent
long_description = (base_dir / 'README.md').read_text()
setup(
name='nebula3-python',
version='3.4.0',
license='Apache 2.0',
author='vesoft-inc',
author_email='[email protected]',
description='Python client for NebulaGraph V3.4',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/vesoft-inc/nebula-python',
install_requires=[
'httplib2 >= 0.20.0',
'future >= 0.18.0',
'six >= 1.16.0',
'pytz >= 2021.1',
],
packages=find_packages(),
platforms=['3.6, 3.7'],
package_dir={'nebula3': 'nebula3'},
)