-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
56 lines (51 loc) · 1.75 KB
/
setup.py
File metadata and controls
56 lines (51 loc) · 1.75 KB
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
# -*- 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 # type: ignore[misc]
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.4.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',
'async-timeout',
'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',
],
)