root/tags/dabo-0.4.1/setup.py

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

Removed reportDesigner.py and sampleReport.py (copied to daboide). Got
rid of the lib/reporting directory, and moved the location of reportWriter.py
into lib.

Changed the license in setup.py to MIT, which is the type of license Dabo
uses.

Submitted what I have so far for the ChangeLog?. Please edit it as you see
fit to do so, Ed.

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.