-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
72 lines (66 loc) · 1.91 KB
/
setup.py
File metadata and controls
72 lines (66 loc) · 1.91 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
"""Install deepthought."""
import os
from setuptools import setup, find_packages
# Get version from version.py
exec(open('deepthought/version.py').read())
VERSION = __version__
PROJECT_URL = "https://github.com/ndsystems/deepthought"
DOWNLOAD_URL = "{}/releases/tag/v{}".format(PROJECT_URL, VERSION)
with open("README.md", "r") as fh:
LONG_DESCRIPTION = fh.read()
INSTALL_REQUIRES = [
"rpyc==6.0.0",
"tifffile==2020.12.8",
"cellpose==0.6",
"numpy>=1.19.4",
"scikit-image>=0.18.1",
"ophyd==1.6.0",
"bluesky==1.6.7",
"databroker==1.2.0",
"magicgui==0.2.5",
"PyQt5>=5.12.3,!=5.15.0",
"napari==0.4.3",
]
DOCS = [
"recommonmark",
"sphinx",
]
# OTHERS = [ ]
# TESTS = [ ]
# ALL = DOCS + OTHERS + TESTS
ALL = DOCS
setup(
name="deepthought",
version=VERSION,
description="DESCRIPTION GOES HERE",
long_description=LONG_DESCRIPTION,
long_description_content_type="text/markdown",
author="Kesavan Subburam",
author_email="pskeshu@gmail.com",
url=PROJECT_URL,
download_url=DOWNLOAD_URL,
license="MIT",
install_requires=INSTALL_REQUIRES,
extras_require={
"docs": DOCS,
# "others": OTHERS,
# "tests": TESTS,
"all": ALL,
},
classifiers=[
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
],
packages=find_packages(),
)