-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsetup.py
More file actions
34 lines (29 loc) · 1017 Bytes
/
setup.py
File metadata and controls
34 lines (29 loc) · 1017 Bytes
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, find_packages
from botai.main import __version__
def read(filename):
return open(os.path.join(os.path.dirname(__file__), filename)).read()
setup(
name="bot.ai",
version=".".join(map(str, __version__)),
description="A minimal chatbot platform.",
long_description=read('README.md'),
url='',
license='MIT',
author='Marc Lucchini',
packages=find_packages(exclude=['tests']),
include_package_data=True,
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: Information Technology',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Framework :: Flask',
'Framework :: spaCy'
],
install_requires=[],
tests_require=[],
)