forked from kkyon/botflow
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
35 lines (28 loc) · 915 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
35
import os
from setuptools import setup
import codecs
def read(fname):
return codecs.open(os.path.join(os.path.dirname(__file__), fname),encoding="utf-8").read()
setup(name='databot',
description='data flow programming framework with asyncio'
' ',
long_description=read("README.rst"),
version='0.1.7',
url='https://github.com/kkyx/databot',
author='Guojian Li',
author_email='[email protected]',
license='BSD',
python_requires=">=3.6.5",
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 3'
],
packages=['databot', 'databot.db', 'databot.http'],
install_requires=[
'aiohttp>=3.3.0',
'aiomysql>=0.0.19',
'graphviz'
],
)