-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
41 lines (39 loc) · 1.54 KB
/
setup.py
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
41
# encoding: utf-8
from setuptools import setup, find_packages
setup(
name='simpy',
version='3.0.10',
author='Ontje Lünsdorf, Stefan Scherfke',
author_email='the_com at gmx.de; stefan at sofa-rockers.org',
description='Event discrete, process based simulation for Python.',
long_description='\n\n'.join(
open(f, 'rb').read().decode('utf-8')
for f in ['README.txt', 'CHANGES.txt', 'AUTHORS.txt']),
url='https://simpy.readthedocs.io',
license='MIT License',
install_requires=[],
packages=find_packages(where='src'),
package_dir={'': 'src'},
include_package_data=True,
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: Education',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
'Topic :: Scientific/Engineering',
],
)