* oops, missing comma broke previous commit.
[pyion.git] / setup.py
blobe0da999ae5fb0b370c2c11e6ce1f27c63ae46db9
1 from setuptools import setup, find_packages
2 import sys, os
4 version = '0.02'
6 setup(name='pyion',
7 version=version,
8 description="Core modules by Ion",
9 long_description="""File handling, maths, randomization, miscellaneous""",
10 classifiers=['Development Status :: 4 - Beta',
11 'Intended Audience :: Developers',
12 'License :: OSI Approved :: GNU General Public License (GPL)',
13 'Programming Language :: Python :: 2.5',
14 'Topic :: Software Development :: Libraries :: Python Modules'],
15 # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
16 keywords='file math random miscellaneous',
17 author='David Gowers',
18 author_email='00ai99@gmail.com',
19 url='http://pypi.python.org/pypy/pyion',
20 download_url='http://repo.or.cz/pyion.git',
21 license='GPLv3',
22 packages=find_packages(exclude=['ez_setup', 'examples', 'tests', 'doc']),
23 include_package_data=True,
24 zip_safe=True,
25 install_requires=[
26 # -*- Extra requirements: -*-
28 entry_points="""
29 # -*- Entry points: -*-
30 """,