-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
39 lines (32 loc) · 953 Bytes
/
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
from setuptools import setup
import rpsowmi
classifiers = [line.rstrip() for line in """\
License :: OSI Approved :: MIT License
Development Status :: 3 - Alpha
Programming Language :: Python :: 3.4
Programming Language :: Python :: 3.5
Programming Language :: Python :: 3.6
Operating System :: Microsoft :: Windows
Intended Audience :: Developers
""".splitlines()]
keywords = [line.rstrip() for line in """\
WMI
PowerShell
Remote
""".splitlines()]
with open("README.rst") as fp:
long_description = fp.read()
setup(
version=rpsowmi.__version__,
name=rpsowmi.__name__,
license=rpsowmi.__license__,
url="https://github.com/sakurai-youhei/rpsowmi",
description="Remote PowerShell over WMI (RPSoWMI)",
long_description=long_description,
classifiers=classifiers,
keywords=keywords,
author=rpsowmi.__author__,
author_email=rpsowmi.__email__,
py_modules=[rpsowmi.__name__],
test_suite="test.suite",
)