#!/usr/bin/env python # piker: trading gear for hackers # Copyright (C) 2018-present Tyler Goodlet (in stewardship of piker0) # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU Affero General Public License for more details. # You should have received a copy of the GNU Affero General Public License # along with this program. If not, see . from setuptools import ( setup, find_packages, ) with open('README.rst', encoding='utf-8') as f: readme = f.read() setup( name="piker", version='0.1.0.alpha0.dev0', description='trading gear for hackers.', long_description=readme, license='AGPLv3', author='Tyler Goodlet', maintainer='Tyler Goodlet', url='https://github.com/pikers/piker', platforms=['linux'], packages=find_packages(), entry_points={ 'console_scripts': [ 'piker = piker.cli:cli', 'pikerd = piker.cli:pikerd', 'ledger = piker.accounting.cli:ledger', # 'store = piker.storage.cli:store', ] }, install_requires=[ # 'tomlkit', # fork & fix for now.. 'tomli', # for pre-3.11 'tomli-w', # for fast ledger writing 'colorlog', 'attrs', 'pygments', 'colorama', # numba traceback coloring 'msgspec', # performant IPC messaging and structs 'protobuf', 'typer', 'rich', # async 'trio', 'trio-websocket', 'trio-util', 'async_generator', # from github currently (see requirements.txt) # normally pinned to particular git hashes.. # 'tractor', # 'asyncvnc', # 'anyio-marketstore', # mkts tsdb client # brokers 'asks', # for non-ws rest apis 'ib_insync', # numerics 'pendulum', # easier datetimes 'bidict', # 2 way map 'cython', 'numpy', 'numba', 'polars', # dataframes # UI 'PyQt5', # 'pyqtgraph', from our fork see reqs.txt 'qdarkstyle >= 3.0.2', # themeing 'fuzzywuzzy[speedup]', # fuzzy search ], extras_require={ 'tsdb': [ 'docker', ], 'es': [ 'docker', 'elasticsearch' ] }, tests_require=['pytest'], python_requires=">=3.10", keywords=[ "async", "trading", "finance", "quant", "charting", ], classifiers=[ 'Development Status :: 3 - Alpha', 'License :: OSI Approved :: ', 'Operating System :: POSIX :: Linux', "Programming Language :: Python :: Implementation :: CPython", "Programming Language :: Python :: 3 :: Only", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", 'Intended Audience :: Financial and Insurance Industry', 'Intended Audience :: Science/Research', 'Intended Audience :: Developers', 'Intended Audience :: Education', ], )