Skip to content

Commit

Permalink
Update setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
giovannivolpe authored Mar 19, 2024
1 parent fe51614 commit 6b5477b
Showing 1 changed file with 16 additions and 14 deletions.
30 changes: 16 additions & 14 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import setuptools
import pkg_resources
from setuptools import setup, find_packages

with open("README.md", "r") as fh:
long_description = fh.read()
Expand All @@ -11,25 +10,28 @@
required = [x for x in required if not x.startswith("Sphinx")]
required = [x for x in required if not x.startswith("pydata-sphinx-theme")]




setuptools.setup(
name="deeptrack", # Replace with your own username
version="1.5.2",
author="Benjamin Midtvedt",
author_email="[email protected]",
description="A deep learning oriented microscopy image simulation package",
setup(
name="deeptrack",
version="1.7.0",
license="MIT",
packages=find_packages(),
author=(
"Benjamin Midtvedt, Jesus Pineda, Henrik Klein Moberg, "
"Harshith Bachimanchi, Carlo Manzo, Giovanni Volpe"
),
description=(
"A deep learning framework to enhance microscopy, "
"developed by DeepTrackAI."
),
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/softmatterlab/DeepTrack-2.0/",
url="https://github.com/DeepTrackAI/DeepTrack2",
install_requires=required,
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
extras_requires={"tensorflow": ["tensorflow<=2.10", "tensorflow-probability", "tensorflow-datasets", "tensorflow_addons"]},
python_requires=">=3.6",
python_requires=">=3.8",
)

0 comments on commit 6b5477b

Please sign in to comment.