|
1 | | -import setuptools |
2 | | -import pkg_resources |
| 1 | +from setuptools import setup, find_packages |
3 | 2 |
|
4 | 3 | with open("README.md", "r") as fh: |
5 | 4 | long_description = fh.read() |
|
11 | 10 | required = [x for x in required if not x.startswith("Sphinx")] |
12 | 11 | required = [x for x in required if not x.startswith("pydata-sphinx-theme")] |
13 | 12 |
|
14 | | - |
15 | | - |
16 | | - |
17 | | -setuptools.setup( |
18 | | - name="deeptrack", # Replace with your own username |
19 | | - version="1.5.2", |
20 | | - author="Benjamin Midtvedt", |
21 | | - |
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 | + ), |
23 | 26 | long_description=long_description, |
24 | 27 | long_description_content_type="text/markdown", |
25 | | - url="https://github.com/softmatterlab/DeepTrack-2.0/", |
| 28 | + url="https://github.com/DeepTrackAI/DeepTrack2", |
26 | 29 | install_requires=required, |
27 | | - packages=setuptools.find_packages(), |
28 | 30 | classifiers=[ |
29 | 31 | "Programming Language :: Python :: 3", |
30 | 32 | "License :: OSI Approved :: MIT License", |
31 | 33 | "Operating System :: OS Independent", |
32 | 34 | ], |
33 | 35 | extras_requires={"tensorflow": ["tensorflow<=2.10", "tensorflow-probability", "tensorflow-datasets", "tensorflow_addons"]}, |
34 | | - python_requires=">=3.6", |
| 36 | + python_requires=">=3.8", |
35 | 37 | ) |
0 commit comments