1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40
|
# encoding: utf-8
from distutils.core import setup
import SimPy
setup(
name='SimPy',
version=SimPy.__version__,
author='Klaus Muller, Tony Vignaux, Ontje Lünsdorf, Stefan Scherfke',
author_email=('vignaux at user.sourceforge.net; '
'kgmuller at users.sourceforge.net; '
'the_com at gmx.de; '
'stefan at sofa-rockers.org'),
description='Event discrete, process based simulation for Python.',
long_description=open('README.txt').read(),
url='http://simpy.sourceforge.net/',
download_url='https://sourceforge.net/projects/simpy/files/',
license='GNU LGPL',
packages=[
'SimPy',
'SimPy.test',
],
package_data={},
classifiers=[
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: Implementation :: PyPy',
'Operating System :: OS Independent',
'License :: OSI Approved :: GNU Library or Lesser General Public ' + \
'License (LGPL)',
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering',
],
)
|