-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (25 loc) · 775 Bytes
/
setup.py
File metadata and controls
28 lines (25 loc) · 775 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
#!/usr/bin/env python
from setuptools import setup, find_packages
__author__ = "fraq <code@fraq.io>"
__copyright__ = "Copyright 2018, Legobot"
description = 'Lego for organizing text and generating markoved responses'
name = 'legos.markov'
setup(
name=name,
version='0.1.4',
namespace_packages=name.split('.')[:-1],
license='MIT',
description=description,
author='fraq',
url='https://github.com/Legobot/' + name,
install_requires=['legobot>=1.2.1,<=2.0.0',
'markovify',
'nltk'
],
classifiers=[
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Development Status :: 4 - Beta'
],
packages=find_packages()
)