forked from kwagstyl/matplotlib_surface_plotting
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
17 lines (14 loc) · 612 Bytes
/
setup.py
File metadata and controls
17 lines (14 loc) · 612 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
from setuptools import setup, find_packages
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(name='matplotlib_surface_plotting',
version='0.12',
packages=find_packages(),
install_requires=['nibabel',
'matplotlib>=3.3.2'],
package_dir={'matplotlib_surface_plotting':'matplotlib_surface_plotting'},
url="https://github.com/kwagstyl/matplotlib_surface_plotting",
description="Brain mesh plotting in matplotlib",
long_description=long_description,
long_description_content_type="text/markdown",
)