-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
37 lines (34 loc) · 1.22 KB
/
setup.py
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
from setuptools import find_packages, setup
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name="gpu_slic",
version="0.0.1a3",
python_requires=">=3.6",
package_dir={"": "src"},
packages=find_packages(where="src"),
include_package_data=True,
install_requires=[
"numpy",
"jinja2",
"scikit-image",
"cupy>=7.0.0,<8.0.0",
],
# metadata to display on PyPI
author="Omar Elamin",
author_email="[email protected]",
description="CUDA implementation of the SLIC segmentaion algorithm.",
keywords="segmentation fast cuda slic clustering kmeans",
url="https://gitlab.stfc.ac.uk/RosalindFranklinInstitute/cuda-slic", # project home page, if any
classifiers=[
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
],
options={"bdist_wheel": {"universal": "1"}},
# could also include long_description, download_url, etc.
long_description=long_description,
long_description_content_type="text/markdown",
)