diff --git a/setup.py b/setup.py index 711a3b61..a869f2b8 100644 --- a/setup.py +++ b/setup.py @@ -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() @@ -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="benjamin.midtvedt@physics.gu.se", - 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", )