-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
58 lines (53 loc) · 1.26 KB
/
setup.py
File metadata and controls
58 lines (53 loc) · 1.26 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
# -*- coding: utf-8 -*-
# @Time : 2020/10/30 8:07 下午
# @Author : Henson
# @Email : henson_wu@foxmail.com
# @File : setup.py
from setuptools import setup, find_packages
# with open('README.md') as f:
# readme = f.read()
readme = """
please see https://github.com/gumupaier/flute
"""
install_packages = []
setup(
name='nebula_flute',
version='1.0.0',
description='nebula graph database toolkit python version',
long_description=readme,
author='henson',
author_email='henson_wu@foxmail.com',
url='https://github.com/gumupaier/flute',
packages=find_packages(exclude=('tests', 'docs', 'templates')),
package_data={
"nebula_flute": ["*.jar"],
},
install_requires=[
'aiomysql',
'blessed',
'cffi',
'cryptography',
'future',
'gevent',
'greenlet',
'httplib2',
'inquirer',
'nebula-python',
'pycparser',
'PyMySQL',
'python-editor',
'PyYAML',
'readchar',
'six',
'click',
'wcwidth',
'zope.event',
'zope.interface',
],
include_package_data=True,
entry_points={
'console_scripts': [
'flute=flute.commands.command:main'
],
},
)