-
Notifications
You must be signed in to change notification settings - Fork 43
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
version bump and pypi readme addition
- Loading branch information
Showing
1 changed file
with
6 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,14 @@ | ||
from setuptools import setup | ||
from setuptools import find_packages | ||
|
||
with open('README.md', encoding='utf-8') as f: | ||
long_description = f.read() | ||
|
||
setup(name='ivis', | ||
version='1.1.4', | ||
version='1.1.5', | ||
description='Artificial neural network-driven visualization of high-dimensional data using triplets.', | ||
long_description=long_description, | ||
long_description_content_type='text/markdown', | ||
url='http://github.com/beringresearch/ivis', | ||
author='Benjamin Szubert, Ignat Drozdov', | ||
author_email='[email protected], [email protected]', | ||
|