Possibly finished up automake-related stuff. 'make dist' *might* produce a real...
[jben2_gui.git] / python / setup.py
blob737aa52e0f143ab330ef67f3b265917bde192fd4
1 #!/usr/bin/env python
2 # -*- coding: utf-8 -*-
4 from distutils.core import setup
5 from jben import jben_globals
7 setup(name='jben',
8 version=jben_globals.VERSION_STR,
9 description='J-Ben: A Japanese study program (alpha)',
10 author=jben_globals.AUTHOR_NAME,
11 author_email='general@vultaire.net',
12 url='http://jben.vultaire.net/',
13 packages=[
14 'jben',
15 'jben.interface',
16 'jben.interface.console',
17 'jben.interface.gtk',
18 'jben.interface.gtk.dialog',
19 'jben.interface.gtk.dialog.preferences',
20 'jben.interface.gtk.widget',
21 'jben.interface.gtk.window',
23 package_data={'jben': ['images/*.xpm']},
24 scripts=["scripts/jben.py"],
25 install_requires=['jblite', 'PyGTK'],
26 classifiers=[
27 'Environment :: Win32 (MS Windows)',
28 'Environment :: X11 Applications :: GTK',
29 'Development Status :: 3 - Alpha',
30 'Intended Audience :: Developers',
31 'License :: OSI Approved :: GNU General Public License (GPL)',
32 'Natural Language :: English',
33 'Operating System :: Microsoft :: Windows :: Windows NT/2000',
34 'Operating System :: POSIX :: Linux',
35 'Programming Language :: Python',
36 'Topic :: Education'