-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
68 lines (63 loc) · 1.67 KB
/
Copy pathsetup.py
File metadata and controls
68 lines (63 loc) · 1.67 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
#!/usr/bin/env python
from setuptools import setup
def readme():
"""Grab the rst version of docs for pypi."""
with open('README.rst') as f:
return f.read()
setup(
name='botty_mcbotface',
version='1.5.3',
description='General purpose Slack-bot with personality',
long_description=readme(),
url='https://github.com/ColumbiaSC-Tech/botty_mcbotface',
author='Danny Hinshaw',
author_email='danny@nulleffort.com',
classifiers=[
# 3 - Alpha
# 4 - Beta
# 5 - Production/Stable
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.7',
],
install_requires=[
'apscheduler',
'arrow',
'bs4',
'certifi',
'cchardet',
'google-api-python-client',
'google-auth',
'idna',
'lxml',
'nose',
'python-dateutil',
'pytz',
'requests',
'slackbot',
'slacker',
'sqlalchemy',
'tzlocal',
'urllib3',
'websocket-client'
],
keywords='slack bot slackbot botty_mcbotface botty gonzobot',
license='MIT',
packages=[
'botty_mcbotface',
'botty_mcbotface.botty',
'botty_mcbotface.botty.db',
'botty_mcbotface.botty.db.models',
'botty_mcbotface.botty.db.routines',
'botty_mcbotface.data',
'botty_mcbotface.plugins',
'botty_mcbotface.task_runner',
'botty_mcbotface.utils'
],
package_data={
'': ['*.json', '*.rst', '*.txt'],
},
python_requires='>=3.7',
zip_safe=False
)