root/tags/dabo-0.5/setup.py

Revision 1483, 0.8 kB (checked in by paul, 3 years ago)

Converted a couple whole files from space indentation to tab indentation,
and made the tool executable.

Line 
1 import ez_setup # From http://peak.telecommunity.com/DevCenter/setuptools
2 ez_setup.use_setuptools()
3
4 from setuptools import setup, find_packages
5 from dabo.__version__ import version
6
7 daboVersion = version["version"]
8
9 setup(
10         name = "Dabo",
11         version = daboVersion,
12         url = 'http://dabodev.com/',
13         author = 'Ed Leafe and Paul McNett',
14         author_email = 'dev@dabodev.com',
15         description = 'Dabo 3-tier Application Framework',
16         license = 'MIT',
17         packages = find_packages(),
18         package_data = {
19                 '':['ANNOUNCE', 'AUTHORS', 'ChangeLog', 'INSTALL',
20                 'LICENSE.TXT', 'README', 'TODO'],
21                 'dabo.icons': ['*.png'],
22                 'dabo.lib.reporting':['*.rfxml'],
23                 'dabo.lib.reporting_stefano':['*.rfxml'],
24                 'dabo.ui.uiwx.macImageProblem':['*.png'],
25                 'dabo.ui.uiwx.masked':['README'],
26         },
27 )
Note: See TracBrowser for help on using the browser.