-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
34 lines (25 loc) · 786 Bytes
/
Copy pathsetup.py
File metadata and controls
34 lines (25 loc) · 786 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
from setuptools import setup, find_packages
from codecs import open
from os import path
here = path.abspath(path.dirname(__file__))
setup(
name='bender',
version='0.1.0',
description="Python chat bot framework",
url='https://github.com/seancron/bender',
author='Sean Cronin',
author_email='seancron@gmail.com',
license='MIT',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2.7',
],
keywords='slack chat api',
packages=['bender', 'bender.plugins'],
install_requires=['slack-rtm', 'blinker>=1.3'],
dependency_links=[
'git+https://github.com/seancron/slack-rtm.git'
]
)