* move examples to a more canonical location
[pyion.git] / setup.py
blobea84d4bdb2143876c87a0cd1e4fc7c8b329b355a
1 from setuptools import setup, find_packages
2 import sys, os
4 version = '0.01'
6 setup(name='ion',
7 version=version,
8 description="Core modules by Ion",
9 long_description="""File handling and maths""",
10 classifiers=['Development Status :: 2 - Pre-Alpha',
11 'Intended Audience :: Developers',
12 'License :: OSI Approved :: GNU General Public License (GPL)',
13 'Programming Language :: Python :: 2.5',
14 'Topic :: Software Development :: Libraries'], # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
15 keywords='file',
16 author='David Gowers',
17 author_email='00ai99@gmail.com',
18 url='http://no',
19 license='GPLv3',
20 packages=find_packages(exclude=['ez_setup', 'examples', 'tests', 'doc']),
21 include_package_data=True,
22 package_data = {'':
23 zip_safe=True,
24 install_requires=[
25 # -*- Extra requirements: -*-
27 entry_points="""
28 # -*- Entry points: -*-
29 """,