-
Notifications
You must be signed in to change notification settings - Fork 10
/
setup.py
57 lines (53 loc) · 1.86 KB
/
setup.py
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
from setuptools import find_packages, setup
def readme():
with open("README.md", "r") as f:
return f.read()
setup(
name="zookeeper",
version="1.3.4",
author="Plumerai",
author_email="[email protected]",
description="A small library for managing deep learning models, hyper-parameters and datasets",
long_description=readme(),
long_description_content_type="text/markdown",
url="https://github.com/larq/zookeeper",
packages=find_packages(),
license="Apache 2.0",
python_requires=">=3.8",
install_requires=[
"click>=7.0",
"tensorflow-datasets>=1.3.0,<v4.9.0",
"typeguard>=2.5.1,<3.0.0",
"protobuf<3.21", # for tensorflow-datasets
"importlib-metadata ~= 2.0 ; python_version<'3.8'",
],
extras_require={
"tensorflow": ["tensorflow>=1.14.0"],
"tensorflow_gpu": ["tensorflow-gpu>=1.14.0"],
"test": [
"black==23.7.0",
"docformatter==1.7.5",
"flake8==6.0.0",
"isort==5.12.0",
"pytest==7.4.0",
"pytest-cov==4.1.0",
"pytype==2023.6.16",
],
},
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Software Development",
],
)