-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
32 lines (31 loc) · 1.3 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
from distutils.core import setup
import setuptools
setup(
name="stg",
version="0.3.0",
description="Control multichannelsystems STG 4002/4/8.",
long_description="Toolbox to control multichannelsystems STG 4002/4/8 via MCS.USB.DLL",
author="Robert Guggenberger",
author_email="robert.guggenberger@uni-tuebingen.de",
url="https://github.com/pyreiz/app-stg4000.git",
download_url="https://github.com/pyreiz/app-stg4000.git",
license="MIT",
packages=["stg", "stg._wrapper", "stg.example"],
entry_points={"console_scripts": ["stg4000-pulsegui=stg.gui.main:main"],},
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Healthcare Industry",
"Intended Audience :: Science/Research",
"Intended Audience :: Information Technology",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Human Machine Interfaces",
"Topic :: Scientific/Engineering :: Medical Science Apps.",
"Topic :: Software Development :: Libraries",
],
)