-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
39 lines (33 loc) · 1.21 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
import setuptools
from distutils.core import setup
from pathlib import Path
# read the contents of README.md
this_directory = Path(__file__).parent
with (this_directory / "readme.md").open(encoding="utf-8") as f:
long_description = f.read()
with (this_directory / "requirements.txt").open() as f:
install_requires = f.readlines()
version = "12.1"
print(version)
setup(
name="dimep",
version="v" + version,
description="Measures ipsilateral MEPs",
long_description=long_description,
long_description_content_type="text/markdown",
install_requires=install_requires,
author="Robert Guggenberger",
author_email="robert.guggenberger@uni-tuebingen.de",
url="https://github.com/translationalneurosurgery/tool-dimep",
download_url="https://github.com/translationalneurosurgery/tool-dimep",
license="MIT",
packages=setuptools.find_packages(exclude=["test", "docs"]),
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering",
],
)