-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
27 lines (25 loc) · 865 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
from setuptools import setup, find_packages
with open("README.md", "r") as f:
long_description = f.read()
setup(
name='tvnsrtools',
version='0.1',
description='Tools to integrate and test remote triggering for the tVNS-R Stimulator. Features a python class to intefrace with the stimulator and a mock server for testing',
long_description=long_description,
long_description_content_type="text/markdown",
author='Joshua P. Woller',
author_email='your@email.com',
license = 'MIT',
packages=find_packages(),
entry_points={
'console_scripts': [
'tvnsMockServer = tvnsrtools.tvnsMockServer:main',
],
},
classifiers=[
'Development Status :: 4 - Beta',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.8',
],
python_requires=">=3.8",
)