| Line | |
|---|
| 1 | #!/usr/bin/env python |
|---|
| 2 | # -*- coding: utf-8 -*- |
|---|
| 3 | # |
|---|
| 4 | # Copyright (C) 2009 John Hampton <pacopablo@pacopablo.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 | # |
|---|
| 10 | # Author: John Hampton <pacopablo@pacopablo.com> |
|---|
| 11 | |
|---|
| 12 | from setuptools import setup |
|---|
| 13 | |
|---|
| 14 | setup( |
|---|
| 15 | name='ResourceToTrac', |
|---|
| 16 | version='1.0', |
|---|
| 17 | packages=['resourcetotrac'], |
|---|
| 18 | author='John Hampton', |
|---|
| 19 | description='Import Trac resources from various sources', |
|---|
| 20 | url='https://pacopablo.com/wiki/Dev/ResourceToTrac', |
|---|
| 21 | license='BSD', |
|---|
| 22 | entry_points = """ |
|---|
| 23 | [console_scripts] |
|---|
| 24 | resource2trac = resourcetotrac.script:run |
|---|
| 25 | |
|---|
| 26 | [trac.plugins] |
|---|
| 27 | resourcetotrac.api = resourcetotrac.api |
|---|
| 28 | resourcetotrac.email.imap = resourcetotrac.email.imap |
|---|
| 29 | """ |
|---|
| 30 | # Currently no package data in use |
|---|
| 31 | # package_data = { |
|---|
| 32 | # 'emailtotrac' : [ |
|---|
| 33 | # 'htdocs/css/*.css', |
|---|
| 34 | # 'htdocs/js/*.js', |
|---|
| 35 | # 'templates/*.html', |
|---|
| 36 | # ] |
|---|
| 37 | # }, |
|---|
| 38 | # No additional dependencied |
|---|
| 39 | # install_requires = [] |
|---|
| 40 | ) |
|---|
Note: See
TracBrowser
for help on using the repository browser.