-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
39 lines (35 loc) · 1.05 KB
/
Copy pathsetup.py
File metadata and controls
39 lines (35 loc) · 1.05 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
import os
import jeev
from setuptools import setup, find_packages
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name="jeev",
version=jeev.version.split('-')[0],
author="Jacob Heinz",
author_email="me@jh.gg",
description="A simple chat bot, at your service.",
license="MIT",
keywords="chat slack bot irc jeev",
url="https://github.com/jhgg/jeev",
packages=find_packages(exclude=['modules']),
install_requires=[
'Flask>=0.10.1',
'requests>=2.4.0',
'gevent>=1.0.0'
],
include_package_data=True,
zip_safe=False,
scripts=['bin/jeev'],
long_description=read('README.md'),
classifiers=[
"Development Status :: 4 - Beta",
"Topic :: Communications :: Chat",
"Topic :: Utilities",
"Framework :: Flask",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 2 :: Only",
"License :: OSI Approved :: MIT License",
],
)