-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (21 loc) · 751 Bytes
/
setup.py
File metadata and controls
24 lines (21 loc) · 751 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
from setuptools import setup, find_packages
with open("README.md", "r") as f:
readme = f.read()
requirements = ["numpy", "pillow", "matplotlib", "nibabel"]
setup(
name="wbplot",
version="1.0.14",
author="Joshua Burt",
author_email="joshua.burt@yale.edu",
include_package_data=True,
description="A package for automated plotting of neuroimaging maps using Connectome Workbench.",
long_description=readme,
long_description_content_type="text/markdown",
url="https://github.com/jbburt/wbplot",
packages=find_packages(),
install_requires=requirements,
classifiers=[
"Programming Language :: Python :: 3.7",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
],
)