File: setup.py

package info (click to toggle)
pyhunspell 0.1-2
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 196 kB
  • ctags: 77
  • sloc: ansic: 657; python: 28; makefile: 15
file content (17 lines) | stat: -rwxr-xr-x 520 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/usr/bin/python
from distutils.core import setup, Extension

main = Extension(	'hunspell', 
			define_macros = [('_LINUX',None)],
			libraries = ['hunspell'],
			include_dirs = ['/usr/include/hunspell'],
			sources = ['hunspell.c'],
			extra_compile_args = ['-Wall'])

setup(	name = "hunspell",
	version = "0.1",
	description = "Module for the Hunspell spellchecker engine",
    author="Sayamindu Dasgupta",
    author_email="sayamindu@gmail.com",
    url="http://code.google.com/p/pyhunspell",
	ext_modules = [main])