|
Revision 88
(checked in by stevegt, 6 years ago)
|
checkpoint after first public deployment a couple of days ago; lots of template work, add comments and ref columns to db
|
| Line | |
|---|
| 1 |
from setuptools import setup |
|---|
| 2 |
|
|---|
| 3 |
PACKAGE = 'TracMarket' |
|---|
| 4 |
VERSION = '0.1' |
|---|
| 5 |
|
|---|
| 6 |
setup(name=PACKAGE, version=VERSION, packages=['tracmarket'], |
|---|
| 7 |
test_suite="tracmarket.tests", |
|---|
| 8 |
package_data={'tracmarket' : [ |
|---|
| 9 |
'templates/*.cs', |
|---|
| 10 |
'templates/market/*.cs', |
|---|
| 11 |
'templates/market/portfolio/*.cs', |
|---|
| 12 |
'templates/market/wiki/*.cs', |
|---|
| 13 |
'htdocs/css/*.css', |
|---|
| 14 |
'htdocs/css/luna/*.css', |
|---|
| 15 |
'htdocs/images/*.jpg', |
|---|
| 16 |
'htdocs/images/*.png', |
|---|
| 17 |
'htdocs/images/*.gif' |
|---|
| 18 |
'htdocs/js/*.css', |
|---|
| 19 |
'htdocs/js/slider/*.css', |
|---|
| 20 |
]}) |
|---|