Skip to content

Commit

Permalink
fix packiging
Browse files Browse the repository at this point in the history
  • Loading branch information
sam-kleiner committed Jun 17, 2018
1 parent 709f81c commit e774039
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
from setuptools import setup
from setuptools import setup, find_packages

with open('README.md') as f:
long_description = f.read()

setup(
name='binance-db',
version='0.0.1',
version='0.0.2',
description='Binance data cache',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/StoicPerlman/binance-db',
download_url = 'https://github.com/StoicPerlman/binance-db/archive/0.0.1.tar.gz',
download_url = 'https://github.com/StoicPerlman/binance-db/archive/0.0.2.tar.gz',
author='Sam Kleiner',
author_email='[email protected]',
classifiers=[
Expand All @@ -23,6 +23,6 @@
'Programming Language :: Python :: 3.6',
],
keywords='binance data cache',
packages=['binance_db'],
packages=find_packages(),
install_requires=['sqlalchemy', 'psycopg2-binary', 'python-binance']
)

0 comments on commit e774039

Please sign in to comment.