forked from tomerfiliba-org/rpyc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
69 lines (66 loc) · 2.4 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
#!/usr/bin/env python
# encoding: utf-8
import sys
import os
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
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="tomerfiliba@gmail.com",
maintainer="James Stronz",
maintainer_email="james@network-perception.com",
license="MIT",
url="http://rpyc.readthedocs.org",
packages=[
'rpyc',
'rpyc.core',
'rpyc.lib',
'rpyc.utils',
],
scripts=[
os.path.join("bin", "rpyc_classic.py"),
os.path.join("bin", "rpyc_registry.py"),
],
tests_require=[],
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"],
python_requires='>=3.6',
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 :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"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",
],
)