typo error
[pp3.git] / setup.py
blob118943c4cd8a17b8036c182edfa528516c7c48e6
1 #!/usr/bin/env python3
2 # -*- coding: utf-8 -*-
3 """
4 Standard build tool for python libraries.
5 """
7 import os.path
8 from distutils.core import setup
10 from pp import version as VERSION
13 LONG_DESCRIPTION = """
14 PP3 is Python3x fork of:\
15 Parallel Python module (PP) provides an easy and efficient way to create \
16 parallel-enabled applications for SMP computers and clusters. PP module \
17 features cross-platform portability and dynamic load balancing. Thus \
18 application written with PP will parallelize efficiently even on \
19 heterogeneous and multi-platform clusters (including clusters running other \
20 application with variable CPU loads). Visit http://www.parallelpython.com \
21 for further information about PP-1.5.7 .
22 """
25 setup(
26 name="pp3",
27 url="",
28 version=VERSION,
29 download_url="",
30 author="",
31 author_email="mimi.vx@gmail.com",
32 py_modules=["ppworker", "pptransport", "ppauto", "pp"],
33 scripts=["ppserver.py"],
34 description="Parallel and distributed programming for Python",
35 platforms=["Windows", "Linux", "Unix"],
36 long_description=LONG_DESCRIPTION,
37 license="BSD-like",
38 classifiers=[
39 "Topic :: Software Development",
40 "Topic :: System :: Distributed Computing",
41 "Programming Language :: Python",
42 "Operating System :: OS Independent",
43 "License :: OSI Approved :: BSD License",
44 "Natural Language :: English",
45 "Intended Audience :: Developers",
46 "Development Status ::",