|
Last change
on this file was
16903,
checked in by Ryan J Ollos, 6 years ago
|
|
TracMermaid 0.4.2: Fix AttributeError when resource.id not string
Fixes #13305.
|
|
File size:
632 bytes
|
| Rev | Line | |
|---|
| [15615] | 1 | # -*- coding: utf-8 -*- |
|---|
| 2 | # |
|---|
| 3 | # Copyright (C) 2016 tkob <ether4@gmail.com> |
|---|
| 4 | # All rights reserved. |
|---|
| 5 | # |
|---|
| 6 | # This software is licensed as described in the file COPYING, which |
|---|
| 7 | # you should have received as part of this distribution. |
|---|
| 8 | |
|---|
| 9 | from setuptools import find_packages, setup |
|---|
| 10 | |
|---|
| 11 | setup( |
|---|
| 12 | name = 'TracMermaid', |
|---|
| [16903] | 13 | version = '0.4.2', |
|---|
| [15615] | 14 | packages = find_packages(exclude=['*.tests*']), |
|---|
| 15 | license = "BSD 3-Clause", |
|---|
| 16 | entry_points = { |
|---|
| 17 | 'trac.plugins': [ |
|---|
| 18 | 'tracmermaid = tracmermaid', |
|---|
| 19 | ], |
|---|
| 20 | }, |
|---|
| [16902] | 21 | install_requires=['Trac'], |
|---|
| [15615] | 22 | package_data = { |
|---|
| 23 | 'tracmermaid': [ |
|---|
| 24 | 'htdocs/*', |
|---|
| 25 | ], |
|---|
| 26 | }, |
|---|
| 27 | ) |
|---|
Note: See
TracBrowser
for help on using the repository browser.