Changeset 20540f97fd3865c474fe59bcc03c2fa7c25da2b6
- Timestamp:
- 05/15/07 16:07:50 (6 years ago)
- Author:
- cgabriel <cgabriel@…>
- Children:
- def8496f12f7458392f060192c6d36009e66f3f4
- Parents:
- a5a90b1926176eee5179d58e77fe8aca9d00cd8e
- git-committer:
- cgabriel <cgabriel@…> (05/15/07 16:07:50)
- Message:
-
spostamento artwork e nuovo setup.py
git-svn-id: https://labs.truelite.it/svn/octofuss/trunk@291 5a101938-5c21-0410-9b5a-a83d6f3706a9
- Files:
-
Legend:
- Unmodified
- Added
- Removed
-
|
rd2c9750
|
r20540f9
|
|
| 1 | 1 | # -*- python -*- |
| 2 | 2 | |
| 3 | | from distutils.core import setup |
| 4 | | |
| | 3 | #from distutils.core import setupa |
| | 4 | from setuptools import find_packages, setup |
| | 5 | from pkg_resources import Requirement, resource_filename |
| | 6 | filename = resource_filename(Requirement.parse("octofuss"),"octofuss.conf") |
| | 7 | |
| | 8 | |
| 5 | 9 | setup( |
| 6 | 10 | name='octofuss', |
| … |
… |
|
| 10 | 14 | author_email="cgabriel@truelite.it", |
| 11 | 15 | url="http://devel.fuss.bz.it/wiki/OctoFuss", |
| 12 | | scripts=['octofuss'] |
| | 16 | scripts=['bin/octofuss'], |
| | 17 | data_files=[('share/octofuss', ['art/*'])], |
| | 18 | packages=find_packages(), |
| | 19 | package_data = { 'octofuss': ['art/*.png']}, |
| 13 | 20 | ) |