-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
32 lines (31 loc) · 979 Bytes
/
setup.py
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
from setuptools import setup, find_packages
setup(
name='zulip-coffeebot',
version='0.3.8',
description='Coffee for all',
url='https://github.com/alphor/zulip-coffeebot',
author='Ahmad Jarara',
author_email='ajarara94@gmail.com',
license='MIT',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Coffee-Drinkers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
],
keywords='zulip coffee',
packages=['coffeebot'],
include_package_data=True,
package_data={'coffeebot': ['zuliprc.conf']},
extras_require={
'test': ['pytest'],
},
entry_points={
'console_scripts': [
'coffeebot=coffeebot.coffeebot:main',
],
},
requires=['zulip'])