-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·35 lines (32 loc) · 1.11 KB
/
Copy pathsetup.py
File metadata and controls
executable file
·35 lines (32 loc) · 1.11 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
from setuptools import setup, find_packages
with open('README.md', 'r') as f:
long_description = f.read()
setup(
name='BioPII',
version='0.2.4',
author='Seth Ockerman',
author_email='ockermas@mail.gvsu.edu',
description='BioPII (Biology Parallel Integral Image) is a Python package for performing sliding window analysis (SWA) on biological images.',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/OckermanSethGVSU/BioPII',
packages=find_packages(),
py_modules=['BioPII'],
classifiers=[
'License :: OSI Approved :: MIT License',
'Environment :: GPU :: NVIDIA CUDA',
'Intended Audience :: Science/Research',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
],
keywords='Biology, Integral Image, Sliding Window, HPC',
install_requires=[
'numpy',
'opencv-python',
],
extras_require={
'GPU-Support': ['cupy']
},
)