File: setup.py

package info (click to toggle)
python-ceres 0.10.0~git20130913-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 200 kB
  • ctags: 232
  • sloc: python: 1,156; makefile: 126
file content (18 lines) | stat: -rw-r--r-- 387 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/usr/bin/env python

import os
from glob import glob
from distutils.core import setup


setup(
  name='ceres',
  version='0.10.0',
  url='https://github.com/graphite-project/ceres',
  author='Chris Davis',
  author_email='chrismd@gmail.com',
  license='Apache Software License 2.0',
  description='Distributable time-series database',
  py_modules=['ceres'],
  scripts=glob('bin/*')
)