| Line | |
|---|
| 1 | #!/usr/bin/env python |
|---|
| 2 | # -*- coding: utf-8 -*- |
|---|
| 3 | # |
|---|
| 4 | # Copyright (C) 2015 Jon Ashley <trac@zelatrix.plus.com> |
|---|
| 5 | # All rights reserved. |
|---|
| 6 | # |
|---|
| 7 | # Copyright (C) 2012 Rob Guttman <guttman@alum.mit.edu> |
|---|
| 8 | # All rights reserved. |
|---|
| 9 | # |
|---|
| 10 | # This software is licensed as described in the file COPYING, which |
|---|
| 11 | # you should have received as part of this distribution. |
|---|
| 12 | # |
|---|
| 13 | |
|---|
| 14 | from setuptools import setup, find_packages |
|---|
| 15 | |
|---|
| 16 | PACKAGE = 'DygraphsVisualization' |
|---|
| 17 | VERSION = '0.0.1' |
|---|
| 18 | |
|---|
| 19 | setup( |
|---|
| 20 | name=PACKAGE, version=VERSION, |
|---|
| 21 | description='Graphs tables and other data using Dygraphs Visualization API', |
|---|
| 22 | author="Jon Ashley", author_email="trac@zelatrix.plus.com", |
|---|
| 23 | license='3-Clause BSD', |
|---|
| 24 | url='https://trac-hacks.org/wiki/DygraphsVisualizationPlugin', |
|---|
| 25 | packages = ['dyviz'], |
|---|
| 26 | package_data = {'dyviz':['templates/*.html','htdocs/*.css','htdocs/*.js']}, |
|---|
| 27 | entry_points = {'trac.plugins':['dyviz.web_ui = dyviz.web_ui']} |
|---|
| 28 | ) |
|---|
Note: See
TracBrowser
for help on using the repository browser.