-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
42 lines (40 loc) · 1.48 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
import setuptools
from distutils.core import setup
from pathlib import Path
with (Path(__file__).parent / "readme.md").open("r") as f:
long_description = f.read()
setup(
name="localite",
version="0.1.0",
description="Stream from and control TMS using Localite",
long_description=long_description,
long_description_content_type="text/markdown",
author="Robert Guggenberger",
author_email="[email protected]",
url="https://github.com/pyreiz/ctrl-localite",
download_url="https://github.com/pyreiz/ctrl-localite",
license="MIT",
packages=["localite", "localite.flow"],
entry_points={
"console_scripts": [
"localite-flow=localite.cli:flow",
"localite-mock=localite.cli:mock",
],
},
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",
],
)