-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
33 lines (32 loc) · 1.05 KB
/
setup.py
File metadata and controls
33 lines (32 loc) · 1.05 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
from setuptools import setup, find_packages
import sys, os
from vs2020._version import __version__ as VERSION
setup(name='vs2020',
version=VERSION,
description="CUI for VS2020",
long_description="""\
This is a command-line user interface for VisualStage2020.""",
classifiers=[], # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
keywords='command-line',
author='Yusuke Yachi',
author_email='yyachi@misasa.okayama-u.ac.jp',
url='http://dream.misasa.okayama-u.ac.jp',
license='MIT',
packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
include_package_data=True,
zip_safe=False,
install_requires=[
'pypiwin32',
'psutil',
'requests',
"PyYAML",
# "pillow",
"paho-mqtt",
# -*- Extra requirements: -*-
],
entry_points={
"console_scripts": [
"vs2020-sentinel = vs2020.mqtt_client:main",
]},
test_suite='nose.collector',
)