Modify

Opened 3 years ago

Closed 3 years ago

Last modified 3 years ago

#13946 closed task (fixed)

Change to setup file

Reported by: figaro Owned by: figaro
Priority: low Component: JqChartMacro
Severity: trivial Keywords: patch
Cc: Trac Release: 1.0

Description

In https://trac-hacks.org/browser/jqchartmacro/1.0/setup.py:

Line 
1#!/usr/bin/env python
2# -*- coding: utf-8 -*-
3#
4# Copyright (C) 2013 Pablo Gra\~na <pablo.grana@55social.com>
5# All rights reserved.
6#
7# This software is licensed as described in the file COPYING, which
8# you should have received as part of this distribution.
9from setuptools import find_packages, setup
10setup (
11    name = 'JQChart',
12    version = 1.0,
13    author = 'pablo.grana',
14    author_email = 'pablo.pg@gmail.com',
15    license = 'BSD',
16    url = 'https://trac-hacks.org/wiki/TBD',
17    description = 'Provides jqplot based charts.',
18    packages = find_packages(exclude=['*.tests']),
19    package_data = { 'jqplotchart': ['htdocs/*.png','htdocs/*.js',
20        'htdocs/*.css', 'htdocs/jqplot/*.js', 'htdocs/jqplot/plugins/*.js',
21        'htdocs/jqplot/*.css'] },
22    entry_points = {'trac.plugins': ['JQChart = jqplotchart.macro']},
23    keywords = 'trac macro',
24)

The line should probably read:

url = 'https://trac-hacks.org/wiki/JqChartMacro',

Attachments (1)

jqchartmacro.diff (517 bytes) - added by figaro 3 years ago.
Diff of setup.py file

Download all attachments as: .zip

Change History (5)

Changed 3 years ago by figaro

Attachment: jqchartmacro.diff added

Diff of setup.py file

comment:1 Changed 3 years ago by figaro

Keywords: patch added

comment:2 Changed 3 years ago by Ryan J Ollos

In 17975:

1.0dev: Change setup file URL

Refs #13946.

comment:3 Changed 3 years ago by Ryan J Ollos

Resolution: fixed
Status: newclosed

comment:4 Changed 3 years ago by Ryan J Ollos

Owner: changed from Pablo to figaro

Modify Ticket

Change Properties
Set your email in Preferences
Action
as closed The owner will remain figaro.
The resolution will be deleted. Next status will be 'reopened'.

Add Comment


E-mail address and name can be saved in the Preferences.

 
Note: See TracTickets for help on using tickets.