-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
43 lines (38 loc) · 1.14 KB
/
setup.py
File metadata and controls
43 lines (38 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
35
36
37
38
39
40
41
42
43
from setuptools import setup, find_packages
def readme(file='', split=False):
with open(file) as f:
if split:
return f.readlines()
else:
return f.read()
setup(
name='Flameboi',
version='0.0.2dev',
description='Slack chat bot',
long_description=readme('README.md'),
url='https://github.com/ASU-CodeDevils/flameboi-slack-api',
author='CodeDevil\'s Student Organization',
author_email='stucampbell.git@gmail.com',
packages=find_packages(),
python_requires='>=3.8',
license='MIT License',
install_requires=[
'Flask',
'python-dotenv',
'requests',
'slack',
'slackclient',
'slackeventsapi',
],
classifiers=[
'Topic :: Communications',
'Topic :: Communications :: Chat',
'Topic :: Internet :: WWW/HTTP :: WSGI',
'Topic :: Internet :: WWW/HTTP :: WSGI :: Application',
'Development Status :: 2 - Pre-Alpha',
'Environment :: Web Environment',
'Framework :: Flask',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.8',
],
)