-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
28 lines (26 loc) · 984 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
from setuptools import setup, find_packages
with open('README.md') as f:
long_description = f.read()
setup(
name='binance-db',
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.2.tar.gz',
author='Sam Kleiner',
author_email='[email protected]',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
],
keywords='binance data cache',
packages=find_packages(),
install_requires=['sqlalchemy', 'psycopg2-binary', 'python-binance']
)