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
|
#
# This is the pyenchant setuptools script.
# Originally developed by Ryan Kelly, 2004.
#
# This script is placed in the public domain.
#
import ez_setup
ez_setup.use_setuptools()
from setuptools import setup, find_packages, Extension
import sys
import os
import shutil
# Location of the windows binaries, if available
WINDEPS = ".\\tools\\pyenchant-bdist-win32-sources\\build"
# Cant seem to obtain version information from module, must hardcode
VERSION = "1.5.3"
# Package MetaData
NAME = "pyenchant"
DESCRIPTION = "Python bindings for the Enchant spellchecking system"
AUTHOR = "Ryan Kelly"
AUTHOR_EMAIL = "ryan@rfk.id.au"
URL = "http://pyenchant.sourceforge.net/"
LICENSE = "LGPL"
KEYWORDS = "spelling spellcheck enchant"
# Module Lists
PACKAGES = find_packages()
EXT_MODULES = []
PKG_DATA = {}
EAGER_RES = []
#
# Build and distribution information is different on Windows.
#
# There's the possibility of including pre-built support DLLs
# for the Windows installer. They will be included if the directory
# <WINDEPS> exists when this script is run. They are copied into
# the package directory so setuptools can locate them.
#
if sys.platform == "win32":
PKG_DATA["enchant"] = ["*.dll", "lib/enchant/*.dll",
"share/enchant/myspell/*.*",
"share/enchant/ispell/*.*"]
EAGER_RES = ["enchant/lib", "enchant/share"]
# Copy local DLLs across if available
if os.path.exists(WINDEPS):
# Main DLLs
libDir = os.path.join(WINDEPS,"lib")
for fName in os.listdir(libDir):
if fName[-3:] == "dll":
shutil.copy(os.path.join(libDir,fName),".\\enchant\\")
EAGER_RES.append("enchant/" + fName)
# Enchant plugins
plugDir = os.path.join(WINDEPS,"lib\\enchant")
for fName in os.listdir(plugDir):
if fName[-3:] == "dll":
shutil.copy(os.path.join(plugDir,fName),".\\enchant\\lib\\enchant\\")
# Local Dictionaries
dictPath = os.path.join(WINDEPS,"myspell")
if os.path.isdir(dictPath):
for dictName in os.listdir(dictPath):
if dictName[-3:] in ["txt","dic","aff"]:
shutil.copy(os.path.join(dictPath,dictName),
".\\enchant\\share\\enchant\\myspell\\")
dictPath = os.path.join(WINDEPS,"ispell")
if os.path.isdir(dictPath):
for dictName in os.listdir(dictPath):
if dictName.endswith("hash") or dictName == "README.txt":
shutil.copy(os.path.join(dictPath,dictName),
".\\enchant\\share\\enchant\\ispell\\")
##
## Main call to setup() function
##
setup(name=NAME,
version=VERSION,
author=AUTHOR,
author_email=AUTHOR_EMAIL,
url=URL,
description=DESCRIPTION,
license=LICENSE,
keywords=KEYWORDS,
packages=PACKAGES,
package_data=PKG_DATA,
eager_resources=EAGER_RES,
test_suite="enchant.testsuite",
include_package_data=True,
)
|