-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
64 lines (61 loc) · 1.78 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
"""Python utility for NRCCUA common generic functions to reuse across
projects."""
from setuptools import setup
with open('README.md', 'r', encoding='utf8') as fileobj:
long_description = fileobj.read()
setup(name='aioradio',
version='0.21.7',
description='Generic asynchronous i/o python utilities for AWS services (SQS, S3, DynamoDB, Secrets Manager), Redis, MSSQL (pyodbc), JIRA and more',
long_description=long_description,
long_description_content_type="text/markdown",
url='https://github.com/nrccua/aioradio',
author='Encoura DS Team',
author_email='[email protected]',
license="MIT",
packages=[
'aioradio',
'aioradio/aws',
],
install_requires=[
'cython>=0.29.33',
'aioboto3==14.0.0',
'aiojobs>=1.0.0',
'backoff>=2.1.2',
'botocore==1.36.23',
'boto3==1.36.23',
'ddtrace>=0.60.1',
'faust-cchardet>=2.1.18',
'fakeredis>=2.20.0',
'httpx>=0.23.0',
'mandrill>=1.0.60',
'mlflow>=2.10.2',
'numpy>=1.26.4',
'openpyxl==3.0.10',
'orjson>=3.6.8',
'pandas>=1.3.5',
'polars>=0.19.12',
'pyarrow>=13.0.0',
'pysmb>=1.2.7',
'python-json-logger>=2.0.2',
'redis>=5.0.1'
],
include_package_data=True,
tests_require=[
'flask==3.1.0',
'flask-cors>=4.0.2',
'moto==4.2.14',
'pre-commit>=2.15.0',
'pylint>=2.13.8',
'pytest>=7.0.1',
'pytest-asyncio>=0.15.1',
'pytest-cov>=3.0.0',
'typing_extensions>=4.10.0',
'werkzeug==3.1.3'
],
zip_safe=False,
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
],
python_requires='>=3.10',
)