Update dev deps to current state of things..
parent
07beec59bf
commit
2f1e9ee760
12
setup.py
12
setup.py
|
@ -16,7 +16,7 @@
|
||||||
# You should have received a copy of the GNU Affero General Public License
|
# You should have received a copy of the GNU Affero General Public License
|
||||||
# along with this program. If not, see <https://www.gnu.org/licenses/>.
|
# along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
from setuptools import setup
|
from setuptools import setup, find_packages
|
||||||
|
|
||||||
with open('README.rst', encoding='utf-8') as f:
|
with open('README.rst', encoding='utf-8') as f:
|
||||||
readme = f.read()
|
readme = f.read()
|
||||||
|
@ -32,12 +32,7 @@ setup(
|
||||||
maintainer='Tyler Goodlet',
|
maintainer='Tyler Goodlet',
|
||||||
url='https://github.com/pikers/piker',
|
url='https://github.com/pikers/piker',
|
||||||
platforms=['linux'],
|
platforms=['linux'],
|
||||||
packages=[
|
packages=find_packages(),
|
||||||
'piker',
|
|
||||||
'piker.brokers',
|
|
||||||
'piker.ui',
|
|
||||||
'piker.testing',
|
|
||||||
],
|
|
||||||
entry_points={
|
entry_points={
|
||||||
'console_scripts': [
|
'console_scripts': [
|
||||||
'piker = piker.cli:cli',
|
'piker = piker.cli:cli',
|
||||||
|
@ -58,13 +53,14 @@ setup(
|
||||||
'async_generator',
|
'async_generator',
|
||||||
|
|
||||||
# brokers
|
# brokers
|
||||||
'asks',
|
'asks==2.4.8',
|
||||||
'ib_insync',
|
'ib_insync',
|
||||||
|
|
||||||
# numerics
|
# numerics
|
||||||
'arrow', # better datetimes
|
'arrow', # better datetimes
|
||||||
'cython',
|
'cython',
|
||||||
'numpy',
|
'numpy',
|
||||||
|
'numba',
|
||||||
'pandas',
|
'pandas',
|
||||||
'msgpack-numpy',
|
'msgpack-numpy',
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue