* make a place in docs for example usage. move the damagecontinuity example there.
[pyion.git] / setup.py
bloba13e5d4ddf2d95c696ecf0040c4f64528a95a0f3
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']),
21 include_package_data=True,
22 zip_safe=True,
23 install_requires=[
24 # -*- Extra requirements: -*-
26 entry_points="""
27 # -*- Entry points: -*-
28 """,