-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
72 lines (67 loc) · 2.24 KB
/
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
# -*- coding: utf-8 -*-
# DO NOT EDIT THIS FILE!
# This file has been autogenerated by dephell <3
# https://github.com/dephell/dephell
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
import os.path
readme = ''
here = os.path.abspath(os.path.dirname(__file__))
readme_path = os.path.join(here, 'README.rst')
if os.path.exists(readme_path):
with open(readme_path, 'rb') as stream:
readme = stream.read().decode('utf8')
setup(
long_description=readme,
name='birdfeeder-coinalpha',
version='1.3.0',
description='Helper library for CoinAlpha projects',
python_requires='==3.*,>=3.8.0',
project_urls={"repository": "https://github.com/coinalpha/birdfeeder"},
author='Vladimir Kamarzin',
author_email='vvk@vvk.pp.ru',
license='MIT',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Topic :: Software Development :: Libraries :: Python Modules',
],
entry_points={"console_scripts": ["build_image = birdfeeder.build_image:app"]},
packages=['birdfeeder', 'birdfeeder.aws', 'birdfeeder.enum', 'birdfeeder.pydantic', 'birdfeeder.sqlalchemy'],
package_dir={"": "."},
package_data={},
install_requires=[
'aioconsole>=0.1.16',
'aiohttp==3.*,>=3.2.0',
'aiorun==2020.*,>=2020.0.0',
'boto3==1.*,>=1.0.0',
'cachetools==4.*,>=4.0.0',
'environs==9.*,>=9.0.0',
'kafka-python==2.*,>=2.0.0',
'pandas==1.*,>=1.1.0',
'pydantic==1.*,>=1.9.0',
'python-json-logger==2.*,>=2.0.0',
'ruamel.yaml==0.*,>=0.16.0',
'typer>=0.3',
],
extras_require={
"dev": [
"docker==4.*,>=4.0.0",
"mysqlclient==2.*,>=2.0.0",
"poetry2conda==0.*,>=0.3.0",
"pre-commit==2.*,>=2.2.0",
"pymysql==1.*,>=1.0.2",
"pytest==6.*,>=6.0.0",
"pytest-aiohttp",
"pytest-asyncio==0.*,>=0.14.0",
"pytest-cov==2.*,>=2.7.0",
"pytest-mock==3.*,>=3.1.0",
"redis==3.*,>=3.5.0",
"sqlalchemy==1.*,>=1.4.0",
"sqlalchemy-utils==0.*,>=0.37.0",
]
},
)