-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
51 lines (50 loc) · 1.28 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
# -*- coding: utf-8 -*-
from setuptools import find_namespace_packages
from setuptools import setup
setup(
name='salver',
version='3.0.0',
description='Yes',
long_description='long desc',
author='jurelou',
author_email='[email protected]',
url='http://opulence.wtf',
license='',
packages=find_namespace_packages(include=['salver.*']),
entry_points={},
install_requires=[
'celery==5.2.3',
'dynaconf==3.1.7',
'loguru==0.6.0',
'pydantic==1.9.0',
'redis==4.1.3',
'docker==5.0.0',
'ujson==5.1.0',
'opensearch-py==1.0.0',
'httpx==0.22.0',
# 'coverage==5.5',
# 'celery-redbeat==2.0.0',
# 'celerybeat-mongo==0.2.0',
#'httpx==0.18.1',
#'elasticsearch==7.12.1',
# 'neo4j==4.2.1',
#'pymongo==3.11.3',
],
extras_require={
'dev': [
'coverage[toml]',
'tox==3.23.0',
'mock==4.0.3',
'pytest==6.2.2',
'flake8==3.9.0',
'black==20.8b1',
'mypy==0.812',
'bandit==1.7.0',
'pydocstyle==6.0.0',
'pylint==2.7.4',
'isort==5.8.0',
'pygount==1.2.4',
],
},
python_requires='>=3.8.*, <4',
)