File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 1
- from setuptools import setup
1
+ from setuptools import setup , find_packages
2
2
3
3
with open ('README.md' ) as f :
4
4
long_description = f .read ()
5
5
6
6
setup (
7
7
name = 'binance-db' ,
8
- version = '0.0.1 ' ,
8
+ version = '0.0.2 ' ,
9
9
description = 'Binance data cache' ,
10
10
long_description = long_description ,
11
11
long_description_content_type = 'text/markdown' ,
12
12
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' ,
14
14
author = 'Sam Kleiner' ,
15
15
16
16
classifiers = [
23
23
'Programming Language :: Python :: 3.6' ,
24
24
],
25
25
keywords = 'binance data cache' ,
26
- packages = [ 'binance_db' ] ,
26
+ packages = find_packages () ,
27
27
install_requires = ['sqlalchemy' , 'psycopg2-binary' , 'python-binance' ]
28
28
)
You can’t perform that action at this time.
0 commit comments