|
Revision 510, 0.8 kB
(checked in by heyadayo, 5 months ago)
|
|
whoops, forgot the setup.py
|
| Line | |
|---|
| 1 | #!/usr/bin/env python |
|---|
| 2 | # -*- coding: iso-8859-1 -*- |
|---|
| 3 | |
|---|
| 4 | from setuptools import setup |
|---|
| 5 | |
|---|
| 6 | setup( |
|---|
| 7 | name = 'orbited_trac_theme', |
|---|
| 8 | version = '1.0', |
|---|
| 9 | packages = ['orbited_trac_theme'], |
|---|
| 10 | package_data = { 'orbited_trac_theme': [ |
|---|
| 11 | 'templates/*.html', |
|---|
| 12 | 'htdocs/*.png', |
|---|
| 13 | 'htdocs/*.css' |
|---|
| 14 | ] |
|---|
| 15 | }, |
|---|
| 16 | |
|---|
| 17 | author = 'Michael Carter', |
|---|
| 18 | author_email = 'CarterMichael@gmail.com', |
|---|
| 19 | description = 'Theme for the Orbited website', |
|---|
| 20 | license = 'MIT', |
|---|
| 21 | keywords = 'trac plugin theme', |
|---|
| 22 | url = 'http://orbited.org', |
|---|
| 23 | classifiers = [ |
|---|
| 24 | 'Framework :: Trac', |
|---|
| 25 | ], |
|---|
| 26 | |
|---|
| 27 | install_requires = ['Trac', 'TracThemeEngine>=2.0'], |
|---|
| 28 | |
|---|
| 29 | entry_points = { |
|---|
| 30 | 'trac.plugins': [ |
|---|
| 31 | 'orbited_trac_theme.theme = orbited_trac_theme.theme', |
|---|
| 32 | ] |
|---|
| 33 | }, |
|---|
| 34 | ) |
|---|