#! /usr/bin/env python # -*- coding: iso-8859-15 -*- import sys, os from distutils.core import setup # Patch distutils if it can't cope with # the "classifiers" or "download_url" keywords. if sys.version < '2.2.3': from distutils.dist import DistributionMetadata DistributionMetadata.classifiers = None DistributionMetadata.download_url = None # # Setup. # setup(name='pyawale', version='0.3.6', description='A simple Awale game', author='Mikael NAVARRO', author_email='klnavarro@free.fr', contact='Mikael NAVARRO', contact_email='klnavarro@gmail.com', long_description='The count-and-capture official board game of Africa.', license='GNU General Public License', url='https://gna.org/projects/pyawale', download_url = 'http://download.gna.org/pyawale', platforms='Theorically all platforms.', data_files = [('pyawale', ['AUTHORS', 'COPYING', 'LICENCE', 'README', 'LISEZMOI', 'INSTALL', 'NEWS', 'ChangeLog']), ('pyawale/doc', ['doc/pyawale.rest', 'doc/awale_module.rest', 'doc/awale_algos.rest', 'doc/awale.html', 'doc/pyawale_intro.png', 'doc/pyawale_gui.png', 'doc/pyawale_end.png']), ('pyawale/data', [os.path.join("data", f) for f in os.listdir("data")]), ('pyawale/src', [os.path.join("src", f) for f in os.listdir("src")]), ('pyawale/tools', [os.path.join("tools", f) for f in os.listdir("tools")])], classifiers = ['Development Status :: 5 - Production/Stable', 'Intended Audience :: End Users/Desktop', 'Environment :: Other Environment', 'License :: OSI Approved :: GNU General Public License (GPL)', 'Operating System :: OS Independent', 'Programming Language :: Python', 'Topic :: Games/Entertainment :: Puzzle Game'] )