-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathsetup.py
More file actions
19 lines (17 loc) · 699 Bytes
/
setup.py
File metadata and controls
19 lines (17 loc) · 699 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
from setuptools import setup
import setuptools
with open("README.md") as f:
readme = f.read()
setup(
name='differentiable_sorting',
packages=setuptools.find_packages(),
version='0.0.3',
description = 'Differentiable approximate sorting/argsorting with bitonic networks',
author = 'John H Williamson',
long_description_content_type="text/markdown",
long_description=readme,
author_email = 'johnhw@gmail.com',
url = 'https://github.com/johnhw/differentiable_sorting',
download_url = 'https://github.com/johnhw/differentiable_sorting/tarball/0.1',
keywords=["sorting", "differentiable", "autograd", "sort", "bitonic"]
)