-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (30 loc) · 963 Bytes
/
Copy pathsetup.py
File metadata and controls
32 lines (30 loc) · 963 Bytes
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
import setuptools
with open("longdescription.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="datature-hub",
version="0.2.1",
author="Ian Duncan",
author_email="ian@datature.io",
description="Loader for models trained on the Datature platform",
include_package_data=True,
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/datature/hub",
packages=setuptools.find_packages("src"),
package_dir={"": "src"},
python_requires=">=3.6, <3.9",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Intended Audience :: Science/Research",
],
install_requires=[
"tensorflow==2.3.0",
"requests>=2.25.1",
"opencv-python==4.5.1.48",
"numpy>=1.16.0,<1.19.0",
"Pillow~=8.2",
],
)