|
Last change
on this file was
14569,
checked in by Franz, 8 years ago
|
|
new version 0.1.2:
- fixed: TM looses all session information (see #12181)
- import: added check for consistency of import file
- performance: property files are loaded into object
|
|
File size:
1.1 KB
|
| Rev | Line | |
|---|
| [14414] | 1 | # -*- coding: utf-8 -*- |
|---|
| 2 | # |
|---|
| 3 | # Copyright (C) 2015 Gefasoft AG |
|---|
| 4 | # Copyright (C) 2015 Franz Mayer <franz.mayer@gefasoft.de> |
|---|
| 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 | # |
|---|
| [14413] | 10 | |
|---|
| 11 | from setuptools import find_packages, setup |
|---|
| 12 | # name can be any name. This name will be used to create the .egg file. |
|---|
| 13 | # name that is used in packages is the one that is used in the trac.ini file. |
|---|
| 14 | # use package name as entry_points |
|---|
| 15 | setup( |
|---|
| 16 | name='Transmanager', |
|---|
| [14569] | 17 | version='0.1.2', |
|---|
| [14414] | 18 | author='Gefasoft AG, Barbara Streppel, Franz Mayer', |
|---|
| [14413] | 19 | description='Plugin for managing translation files', |
|---|
| 20 | url='http://www.gefasoft-muenchen.de', |
|---|
| 21 | download_url='http://trac-hacks.org/wiki/TranslationManagerPlugin', |
|---|
| 22 | packages=find_packages(exclude=['*.tests*']), |
|---|
| 23 | entry_points={"trac.plugins": [ |
|---|
| 24 | "transmgr.main = transmgr.main", |
|---|
| 25 | ] |
|---|
| 26 | }, |
|---|
| 27 | package_data={'transmgr': [ |
|---|
| 28 | 'htdocs/css/*.css', |
|---|
| 29 | 'htdocs/js/*.js', |
|---|
| 30 | 'templates/*.html', |
|---|
| 31 | 'templates/*.txt', |
|---|
| 32 | ]} |
|---|
| 33 | ) |
|---|
Note: See
TracBrowser
for help on using the repository browser.