public
Description: FiveRuns Dash core package for Python
Homepage: http://dash.fiveruns.com
Clone URL: git://github.com/fiveruns/dash-python.git
dash-python / setup.py
100644 23 lines (21 sloc) 0.643 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
from setuptools import setup, find_packages
#import fiveruns.dash.version
 
setup(
  name = "fiveruns.dash",
  version = "0.4",
  description = "FiveRuns Dash base library for Python",
  author = "FiveRuns Development Team",
  author_email = "dev@fiveruns.com",
  url = "http://dash.fiveruns.com",
  packages = find_packages('src', exclude = "tests"),
  package_dir = {'': 'src'},
  install_requires = ['simplejson'],
  license = 'MIT',
  namespace_packages = ['fiveruns'],
  extras_require = {
    'git': ['GitPython'],
    'examples': ["Twisted"],
    'test': ['Mock']
  },
  keywords = "monitoring performance production metrics logging"
)