-
Notifications
You must be signed in to change notification settings - Fork 102
/
Copy pathsetup.py
37 lines (29 loc) · 919 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
36
37
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='botflow',
description='Data-driven and Reactive programming framework'
' ',
long_description=read("README.rst"),
version='0.2.0',
url='https://github.com/kkyx/botflow',
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=['botflow', 'botflow.ex'],
install_requires=[
'aiohttp>=3.3.0',
'graphviz',
'beautifulsoup4',
'lxml'
],
)