-
Notifications
You must be signed in to change notification settings - Fork 52
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
fe51614
commit 6b5477b
Showing
1 changed file
with
16 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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() | ||
|
@@ -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", | ||
) |