-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (27 loc) · 1.3 KB
/
setup.py
File metadata and controls
32 lines (27 loc) · 1.3 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
from setuptools import setup
from setuptools import find_packages
setup(name='Simple-Intent-Parser',
version='1.5.14',
classifiers=[
'Development Status :: 3 - Alpha',
# Indicate who your project is intended for
'Intended Audience :: Developers',
# Pick your license as you wish (should match "license" above)
'License :: OSI Approved :: Apache-2.0',
# Specify the Python versions you support here. In particular, ensure
# that you indicate whether you support Python 2, Python 3 or both.
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5'
],
description='Use to parse an intent easily.',
author='Nonthakon Jitchiranant',
author_email='non_thakon@hotmail.com',
url='https://github.com/nonkung51/IntentParser',
download_url='https://github.com/nonkung51/IntentParser/archive/master.zip',
license='Apache-2.0',
install_requires=['gensim'],
keywords='ai chatbot intentparser',
packages=find_packages(exclude=['examples']),)