-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
34 lines (30 loc) · 1.14 KB
/
setup.py
File metadata and controls
34 lines (30 loc) · 1.14 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
import os
from setuptools import setup
from setuptools import find_packages
def read(fname):
with open(os.path.join(os.path.dirname(__file__), fname)) as f:
return f.read()
long_description = read("README.md")
setup(name='coco-rasa',
version='0.0.3',
description='CoCo(Conversational Components) SDK for using components in Rasa',
long_description=long_description,
long_description_content_type='text/markdown',
author='Chen Buskilla',
author_email='chen@buskilla.com',
url='https://github.com/conversationalcomponents/coco-rasa',
license='MIT',
install_requires=['coco-sdk', 'rasa'],
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'Intended Audience :: Education',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules'
],
packages=find_packages(),
python_requires=">=3.6"
)