-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsetup.py
More file actions
44 lines (32 loc) · 1.19 KB
/
Copy pathsetup.py
File metadata and controls
44 lines (32 loc) · 1.19 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
34
35
36
37
38
39
40
41
42
43
44
import os
import setuptools
here = os.path.abspath(os.path.dirname(__file__))
long_description = open(os.path.join(here, "README.md")).read()
setuptools.setup(
name="mrsd",
version="1.0.0",
description="MR sequence diagram toolkit",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/lamyj/mrsd",
author="Julien Lamy",
author_email="lamy@unistra.fr",
license="MIT",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Framework :: Matplotlib",
"Intended Audience :: Education",
"Intended Audience :: Healthcare Industry",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Medical Science Apps.",
"Topic :: Scientific/Engineering :: Physics",
],
keywords = ["MRI", "sequence", "diagram", "matplotlib"],
packages=["mrsd"],
package_dir={"mrsd": "src/mrsd"},
python_requires=">=3.6",
install_requires=["matplotlib>=3.3", "numpy"],
)