-
Notifications
You must be signed in to change notification settings - Fork 81
/
Copy pathsetup.py
51 lines (45 loc) · 1.52 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
50
51
from setuptools import setup, find_packages
name = 'tessera'
filename = '{0}/_version.py'.format(name)
_locals = {}
with open('tessera/_version.py') as src:
exec(src.read(), None, _locals)
version = _locals['__version__']
setup(
name=name,
version=version,
description='A dashboard front end for Graphite',
license='Apache',
author='Adam Alpern',
url='https://github.com/tessera-metrics/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.7',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python',
'Topic :: System :: Monitoring',
'Topic :: System :: Systems Administration',
],
)