forked from tessera-metrics/tessera
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
49 lines (43 loc) · 1.45 KB
/
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
39
40
41
42
43
44
45
46
47
48
49
from setuptools import setup, find_packages
name = 'tessera'
_locals = {}
execfile('%s/_version.py' % name, _locals)
version = _locals['__version__']
setup(
name=name,
version=version,
description='Powerful multipurpose dashboard server',
license='Apache',
author='Urban Airship',
url='https://github.com/urbanairship/tessera',
packages=find_packages(),
include_package_data=True, # Ensure templates, etc get pulled into sdists
install_requires=[
x.strip()
for x in open('requirements.txt').readlines()
if x and not x.startswith('#')
],
entry_points = {
'console_scripts': [
'tessera-init = tessera.main:init',
'tessera = tessera.main:run'
]
},
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: No Input/Output (Daemon)',
'Framework :: Flask',
'Intended Audience :: Developers',
'Intended Audience :: Information Technology',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: Apache Software License',
'Operating System :: MacOS :: MacOS X',
'Operating System :: POSIX',
'Operating System :: Unix',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python',
'Topic :: System :: Monitoring',
'Topic :: System :: Systems Administration',
],
)