-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
34 lines (31 loc) · 955 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
try:
from setuptools import setup, find_packages
except ImportError:
from distutils.core import setup, find_packages
setup(name="Logbot",
version="dev",
packages=find_packages(),
namespace_packages=['logbot'],
include_package_data=True,
author='Gavin McQuillan',
author_email='gavin.mcquillan@gmail.com',
description='Prototype Twisted Logbot',
long_description='',
zip_safe=False,
platforms='any',
license='MIT',
url='https://github.com/urbanairship/logbot',
classifiers=[
'Development Status :: 1 - Planning',
'Environment :: Console',
'Intended Audience :: Education',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 2.7',
'Operating System :: Unix',
],
entry_points={
'console_scripts': [
'logbot=logot.logbot:main',
],
},
)