forked from tomerfiliba-org/rpyc
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
73 lines (68 loc) · 2.43 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
#!/usr/bin/env python
import sys
import os
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
if sys.version_info < (2, 5):
sys.exit("requires python 2.5 and up")
here = os.path.dirname(__file__)
exec(open(os.path.join(here, 'rpyc', 'version.py')).read())
setup(name = "rpyc",
version = version_string, #@UndefinedVariable
description = "Remote Python Call (RPyC), a transparent and symmetric RPC library",
author = "Tomer Filiba",
author_email = "[email protected]",
maintainer_email = "[email protected]",
license = "MIT",
url = "http://rpyc.readthedocs.org",
packages = [
'rpyc',
'rpyc.core',
'rpyc.lib',
'rpyc.experimental',
'rpyc.utils',
],
scripts = [
os.path.join(here, "bin", "rpyc_classic.py"),
os.path.join(here, "bin", "rpyc_registry.py"),
],
tests_require = ['nose'],
test_suite = 'nose.collector',
install_requires = ["plumbum"],
# entry_points = dict(
# console_scripts = [
# "rpyc_classic = rpyc.scripts.rpyc_classic:main",
# "rpyc_registry = rpyc.scretips.rpyc_registry:main",
# ],
# ),
platforms = ["POSIX", "Windows"],
use_2to3 = False,
zip_safe = False,
long_description = open(os.path.join(here, "README.rst"), "r").read(),
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 2.5",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.0",
"Programming Language :: Python :: 3.1",
"Programming Language :: Python :: 3.2",
"Programming Language :: Python :: 3.3",
"Topic :: Internet",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Object Brokering",
"Topic :: Software Development :: Testing",
"Topic :: System :: Clustering",
"Topic :: System :: Distributed Computing",
"Topic :: System :: Monitoring",
"Topic :: System :: Networking",
"Topic :: System :: Systems Administration",
],
)