-
Notifications
You must be signed in to change notification settings - Fork 15
/
setup.py
32 lines (28 loc) · 977 Bytes
/
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
#!/usr/bin/env python
"""The setup script."""
from setuptools import find_packages, setup
with open("README.md") as readme_file:
readme = readme_file.read()
requirements = ["stardist==0.8.3", "tensorflow==2.10.0", "opencv-python-headless","csbdeep==0.6.3","numpy==1.21.2","numba==0.51.2"]
setup(
author="uhlmanngroup",
author_email="[email protected]",
classifiers=[
"Intended Audience :: Developers",
"Natural Language :: English",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
],
description="splinedist",
install_requires=requirements,
long_description=readme,
long_description_content_type="text/markdown",
include_package_data=True,
keywords="splinedist",
name="splinedist",
packages=find_packages(),
url="https://github.com/uhlmanngroup/splinedist",
version="0.1.2",
zip_safe=False,
)