Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions san/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
ApiConfig.api_key = SANPY_APIKEY

PROJECT = 'sanpy'
__version__ = '0.11.7'

def get_latest():
url = 'https://pypi.python.org/pypi/%s/json' % (PROJECT)
Expand Down
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
import setuptools
import san

with open('README.md', 'r') as fh:
long_description = fh.read()


setuptools.setup(
name='sanpy',
version='0.11.6',
version=getattr(san, '__version__'),
author='Santiment',
author_email='[email protected]',
description='Package for Santiment API access with python',
Expand Down