forked from gmcquillan/firetower
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
39 lines (36 loc) · 1.14 KB
/
Copy pathsetup.py
File metadata and controls
39 lines (36 loc) · 1.14 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
try:
from setuptools import setup, find_packages
except ImportError:
from distutils.core import setup, find_packages
setup(name="Firetower",
version="dev",
packages=find_packages(),
namespace_packages=['firetower'],
include_package_data=True,
author='Gavin McQuillan',
author_email='gavin.mcquillan@gmail.com',
description='Prototype Error Aggregation and Classification System',
long_description='',
zip_safe=False,
platforms='any',
license='MIT',
url='https://github.com/gmcquillan/firetower',
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': [
'firetower-server=firetower.firetower:main',
'firetower-display=firetower.display:main',
'firetower-client=firetower.client:main',
],
},
install_requires=[
'redis',
],
)