-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (21 loc) · 685 Bytes
/
setup.py
File metadata and controls
24 lines (21 loc) · 685 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
from setuptools import find_packages
from setuptools import setup
with open("README.md") as f:
long_description = f.read()
setup(
name="tf-spherical-hashing",
version="0.0.1",
description="Tensorflow implementation of Spherical Hashing.",
long_description=long_description,
long_description_content_type="text/markdown",
author="John Pertoft",
author_email="john.pertoft@gmail.com",
url="https://github.com/johnPertoft/spherical-hashing",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License"
],
packages=find_packages(),
install_requires=[
"tensorflow>=2.0"
])