Skip to content

Commit 6b5477b

Browse files
Update setup.py
1 parent fe51614 commit 6b5477b

File tree

1 file changed

+16
-14
lines changed

1 file changed

+16
-14
lines changed

setup.py

Lines changed: 16 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
import setuptools
2-
import pkg_resources
1+
from setuptools import setup, find_packages
32

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

14-
15-
16-
17-
setuptools.setup(
18-
name="deeptrack", # Replace with your own username
19-
version="1.5.2",
20-
author="Benjamin Midtvedt",
21-
author_email="[email protected]",
22-
description="A deep learning oriented microscopy image simulation package",
13+
setup(
14+
name="deeptrack",
15+
version="1.7.0",
16+
license="MIT",
17+
packages=find_packages(),
18+
author=(
19+
"Benjamin Midtvedt, Jesus Pineda, Henrik Klein Moberg, "
20+
"Harshith Bachimanchi, Carlo Manzo, Giovanni Volpe"
21+
),
22+
description=(
23+
"A deep learning framework to enhance microscopy, "
24+
"developed by DeepTrackAI."
25+
),
2326
long_description=long_description,
2427
long_description_content_type="text/markdown",
25-
url="https://github.com/softmatterlab/DeepTrack-2.0/",
28+
url="https://github.com/DeepTrackAI/DeepTrack2",
2629
install_requires=required,
27-
packages=setuptools.find_packages(),
2830
classifiers=[
2931
"Programming Language :: Python :: 3",
3032
"License :: OSI Approved :: MIT License",
3133
"Operating System :: OS Independent",
3234
],
3335
extras_requires={"tensorflow": ["tensorflow<=2.10", "tensorflow-probability", "tensorflow-datasets", "tensorflow_addons"]},
34-
python_requires=">=3.6",
36+
python_requires=">=3.8",
3537
)

0 commit comments

Comments
 (0)