forked from vesoft-inc/nebula-clients
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
25 lines (21 loc) · 775 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
#!/usr/bin/env python
# Copyright (c) 2020 vesoft inc. All rights reserved.
#
# This source code is licensed under Apache 2.0 License,
# attached with Common Clause Condition 1.0, found in the LICENSES directory.
from setuptools import setup, find_packages
setup(
name='nebula2-python',
version="v2.0.0-beta",
license="Apache 2.0 + Common Clause 1.0",
description='Python client for Nebula Graph V2.0',
url='https://github.com/vesoft-inc/nebula-clients',
install_requires=['httplib2',
'future',
'six',
'futures; python_version == "2.7"'],
packages=find_packages(),
platforms=["2.7, 3.5, 3.7"],
package_dir={'nebula2': 'nebula2',
'thirft': 'thirft'},
)