forked from opensourcehacker/sevabot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
38 lines (28 loc) · 943 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
33
34
35
36
37
38
"""
Declare a Python package sevabot
See
* http://wiki.python.org/moin/Distutils/Tutorial
* http://packages.python.org/distribute/setuptools.html#developer-s-
* http://plone.org/products/plone/roadmap/247
"""
from setuptools import setup
README = open("README.rst", "rt").read() + "\n" + open("CHANGES.rst", "rt").read()
setup(name = "sevabot",
version = "1.0",
description = "A Skype bot supporting integration with external services",
long_description = README,
author = "Mikko Ohtamaa",
author_email = "[email protected]",
url = "https://github.com/sevanteri/sevabot",
install_requires = ["Flask", "Skype4Py", "plac"],
packages = ['sevabot'],
classifiers=[
"Programming Language :: Python",
],
license="BSD",
include_package_data = True,
entry_points="""
[console_scripts]
sevabot = sevabot.frontend.main:entry_point
""",
)