-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
63 lines (59 loc) · 2.01 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
58
59
60
61
62
63
from setuptools import find_packages, setup
def readme():
with open("README.md", "r") as f:
return f.read()
setup(
name="larq-zoo",
version="2.2.0",
author="Plumerai",
author_email="[email protected]",
description="Reference implementations of popular Binarized Neural Networks",
long_description=readme(),
long_description_content_type="text/markdown",
url="https://github.com/plumerai/larq-zoo",
packages=find_packages(),
license="Apache 2.0",
install_requires=[
"numpy>=1.15.0,<1.22.0",
"larq>=0.9.2,<0.13.0",
"zookeeper>=1.0.0,<1.4.0",
"importlib-metadata ~= 2.0 ; python_version<'3.8'",
],
extras_require={
"tensorflow": ["tensorflow>=1.15.0"],
"tensorflow_gpu": ["tensorflow-gpu>=1.15.0"],
"test": [
"black==21.7b0",
"flake8==4.0.1",
"isort==5.9.3",
"pytype==2021.10.11",
"pytest==6.2.5",
"pytest-cov==3.0.0",
"pytest-mock==3.6.1",
"pytest-xdist==2.4.0",
"Pillow==8.4.0",
"tensorflow_datasets>=3.1.0,!=4.3.0",
],
},
entry_points="""
[console_scripts]
lqz=larq_zoo.training.main:cli
""",
classifiers=[
"Development Status :: 2 - Pre-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.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Software Development",
],
)