Skip to content

Commit e774039

Browse files
committed
fix packiging
1 parent 709f81c commit e774039

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

setup.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
1-
from setuptools import setup
1+
from setuptools import setup, find_packages
22

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

66
setup(
77
name='binance-db',
8-
version='0.0.1',
8+
version='0.0.2',
99
description='Binance data cache',
1010
long_description=long_description,
1111
long_description_content_type='text/markdown',
1212
url='https://github.com/StoicPerlman/binance-db',
13-
download_url = 'https://github.com/StoicPerlman/binance-db/archive/0.0.1.tar.gz',
13+
download_url = 'https://github.com/StoicPerlman/binance-db/archive/0.0.2.tar.gz',
1414
author='Sam Kleiner',
1515
author_email='[email protected]',
1616
classifiers=[
@@ -23,6 +23,6 @@
2323
'Programming Language :: Python :: 3.6',
2424
],
2525
keywords='binance data cache',
26-
packages=['binance_db'],
26+
packages=find_packages(),
2727
install_requires=['sqlalchemy', 'psycopg2-binary', 'python-binance']
2828
)

0 commit comments

Comments
 (0)