| Line | |
|---|
| 1 | # -*- python -*- |
|---|
| 2 | |
|---|
| 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 | |
|---|
| 9 | setup( |
|---|
| 10 | name='octofuss', |
|---|
| 11 | version='0.1.0', |
|---|
| 12 | description="FUSS Management Console", |
|---|
| 13 | author="Christopher R. Gabriel", |
|---|
| 14 | author_email="cgabriel@truelite.it", |
|---|
| 15 | url="http://devel.fuss.bz.it/wiki/OctoFuss", |
|---|
| 16 | scripts=['bin/octofuss'], |
|---|
| 17 | data_files=[('share/octofuss', ['art/*'])], |
|---|
| 18 | packages=find_packages(), |
|---|
| 19 | package_data = { 'octofuss': ['art/*.png']}, |
|---|
| 20 | ) |
|---|