-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
22 lines (21 loc) · 804 Bytes
/
setup.py
File metadata and controls
22 lines (21 loc) · 804 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
from distutils.core import setup
setup(
name="pypatchify",
version="0.1.4",
description="Fast and easy image and n-dimensional volume patchification",
long_description=open("README.md", "r").read(),
long_description_content_type='text/markdown',
author="Niclas Doll",
author_email="niclas@amazonis.net",
url="https://github.com/ndoll1998/patchify/tree/master",
packages=['pypatchify'],
package_dir={'pypatchify': 'pypatchify'},
classifiers=[
"Environment :: GPU :: NVIDIA CUDA",
"Intended Audience :: Science/Research",
"License :: Freely Distributable",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Image Processing"
]
)