1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151
|
# -*- coding: utf-8 -*-
# vim:set shiftwidth=4 tabstop=4 expandtab textwidth=79:
# $Id: setup.py 526 2005-08-16 18:09:12Z aafshar $
#Copyright (c) 2005-2006 The PIDA Project
#Permission is hereby granted, free of charge, to any person obtaining a copy
#of this software and associated documentation files (the "Software"), to deal
#in the Software without restriction, including without limitation the rights
#to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
#copies of the Software, and to permit persons to whom the Software is
#furnished to do so, subject to the following conditions:
#The above copyright notice and this permission notice shall be included in
#all copies or substantial portions of the Software.
#THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
#IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
#FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
#AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
#LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
#OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
#SOFTWARE.
# system import(s)
import os
import sys
VERSION_STRING = '0.3.1'
def ensure_version_file_exists():
"""Check for existence of version file and create if unavailable."""
version_path = os.path.join('data', 'version')
if not os.path.exists(version_path):
f = open(version_path, 'w')
f.write('%s\n' % VERSION_STRING)
f.close()
ensure_version_file_exists()
# setuptools import
try:
from setuptools import setup
except ImportError, e:
s = raw_input('Setuptools is not available. '
'You can install it yourself while this prompt waits, or '
'do you want this script to download and install setuptools?'
' (y/n default: n) ')
if s.lower().startswith('y'):
from ez_setup import use_setuptools
use_setuptools(download_delay=0)
try:
from setuptools import setup
except ImportError, e:
print 'Setuptools is still not available. Exiting.'
sys.exit(1)
# base pida packages
base_packages = ['pida',
'pida.core',
'pida.pidagtk',
'pida.services',
'pida.editors',
'pida.utils',
'rat']
# extra utility packages
util_packages = ['pida.utils.vim',
'pida.utils.culebra',
'pida.utils.vc',
'pida.utils.pyflakes']
def discover_data_files(directory_name, extension):
"""Find data files for an extension in a data directory."""
files = []
for name in os.listdir(os.path.join('data', directory_name)):
if name.endswith(extension):
files.append('data/%s/%s' % (directory_name, name))
return files
def find_entry_points(directory_name, entrypoint_name):
"""Find potential entry points by name in a directory."""
entrypoints = []
dirpath = os.path.join('pida', directory_name)
for svc in os.listdir(dirpath):
if svc.endswith('.py') and not svc.startswith('_'):
name = svc.split('.', 1)[0]
entrypoints.append('%s = pida.%s.%s:%s' %
(name, directory_name, name, entrypoint_name))
return entrypoints
def main():
"""The main script."""
packages = base_packages + util_packages
services = find_entry_points('services', 'Service')
plugins = find_entry_points('plugins', 'Plugin')
editors = find_entry_points('editors', 'Service')
pixmaps = discover_data_files('pixmaps', 'xpm')
icons = discover_data_files('icons', 'svg')
uis = discover_data_files('glade', 'glade')
setup(name='pida',
version=VERSION_STRING,
author='Ali Afshar',
author_email='aafshar@gmail.com',
url='http://pida.berlios.de',
download_url='http://pida.berlios.de/index.php/PIDA:Downloads',
description=('A Python IDE written in Python and GTK, '
'which uses Vim as its editor.'),
long_description='Please visit the Pida website for more details.',
packages=packages,
package_dir = {'pida': 'pida'},
data_files=[
('glade', uis),
('pixmaps', pixmaps),
('icons', icons),
('version', ['data/version']),
('', ['data/icons/pida-icon.png']),
('', ['AUTHORS']),
('', ['CONTRIBUTORS']),
('', ['COPYING']),
],
entry_points = {
'console_scripts': [
'pida = pida.core.application:main',
],
'gui_scripts': [],
'pida.services' : services,
'pida.plugins' : plugins,
'pida.editors' : editors,
},
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: X11 Applications',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development']
)
if __name__ == '__main__':
main()
|