This repository was archived by the owner on Mar 27, 2018. It is now read-only.
forked from py4j/py4j
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
52 lines (49 loc) · 2.11 KB
/
setup.py
File metadata and controls
52 lines (49 loc) · 2.11 KB
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
42
43
44
45
46
47
48
49
50
51
52
from distutils.core import setup
import os
DOC_DIR = 'py4j-python/doc'
DIST_DIR = 'py4j-python/dist'
# For Python 3 compatibility, we can't use execfile; this is 2to3's conversion:
exec(compile(open("py4j-python/src/py4j/version.py").read(),
"py4j-python/src/py4j/version.py", 'exec'))
VERSION = __version__
RELEASE = 'py4j-' + VERSION
JAR_FILE = 'py4j' + VERSION + '.jar'
# Note: please do "ant python-light-release" before doing setup.py sdist.
# Otherwise the jar files won't be created
JAR_FILE_PATH = os.path.join('current-release', JAR_FILE)
setup(
name="py4j",
packages=['py4j', 'py4j.tests'],
package_dir={'': 'py4j-python/src'},
data_files=[('share/py4j', [JAR_FILE_PATH])],
version=VERSION,
description='Enables Python programs to dynamically access arbitrary '
'Java objects',
long_description='Py4J enables Python programs running in a Python '
'interpreter to dynamically '
'access Java objects in a Java Virtual Machine. '
'Methods are called as if the Java '
'objects resided in the Python interpreter and Java '
'collections can be accessed '
'through standard Python collection methods. Py4J also '
'enables Java programs to call back Python objects.',
url="http://py4j.sourceforge.net/",
author="Barthelemy Dagenais",
author_email="barthe@users.sourceforge.net",
license="BSD License",
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'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.3',
'Programming Language :: Java',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Object Brokering',
],
)