|
Last change
on this file was
7249,
checked in by Xavier Pechoultres, 14 years ago
|
|
Fix #6325 : charset on setup.py. Thanks to clown !
|
-
Property svn:executable set to
*
|
|
File size:
639 bytes
|
| Rev | Line | |
|---|
| [7249] | 1 | # -*- coding: utf-8 -*- |
|---|
| 2 | |
|---|
| [6279] | 3 | from setuptools import find_packages, setup |
|---|
| 4 | |
|---|
| [6294] | 5 | version='0.4' |
|---|
| [6279] | 6 | |
|---|
| 7 | setup(name='icalview', |
|---|
| 8 | version=version, |
|---|
| [6294] | 9 | description="Provide icalendar export for Queries", |
|---|
| [6279] | 10 | author='Xavier Péchoultres', |
|---|
| 11 | author_email='x.pechoulres@clariprint.com', |
|---|
| [6294] | 12 | url='http://trac-hacks.org/wiki/IcalViewPlugin', |
|---|
| [6279] | 13 | keywords='trac plugin icalendar', |
|---|
| 14 | license="GPL", |
|---|
| 15 | packages=find_packages(exclude=['ez_setup', 'examples', 'tests*']), |
|---|
| 16 | include_package_data=True, |
|---|
| 17 | zip_safe=False, |
|---|
| 18 | install_requires=[], |
|---|
| 19 | entry_points = """ |
|---|
| 20 | [trac.plugins] |
|---|
| 21 | icalview = icalview |
|---|
| 22 | """, |
|---|
| 23 | ) |
|---|
| 24 | |
|---|
Note: See
TracBrowser
for help on using the repository browser.