Change to setup file
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. |
---|
9 | from setuptools import find_packages, setup |
---|
10 | setup ( |
---|
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',
Change History (5)
Resolution: |
→ fixed
|
Status: |
new →
closed
|
Owner: |
changed from Pablo to figaro
|
Diff of setup.py file