-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
59 lines (55 loc) · 1.43 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
#!/usr/bin/env python
from setuptools import (
find_packages,
setup,
)
extras_require = {
'linter': [
"flake8==3.8.3",
"isort>=4.2.15,<4.3.5",
"mypy==0.910",
],
'dev': [
"pytest>=6.2.5,<7",
]
}
extras_require['dev'] = (
extras_require['linter']
+ extras_require['dev']
)
setup(
name='liquidation-bot',
version='0.0.1',
description="""Liquidation bot for $TCAP""",
long_description_content_type='text/markdown',
long_description="""
$TCAP Liquidation Bot by Cryptex.Finance
""",
author='Cryptex.Finance',
author_email='[email protected]',
url='https://github.com/cryptexfinance/liquidation-bot',
include_package_data=True,
install_requires=[
"alembic",
"eth-brownie>=1.18.1,<2.0",
"celery>=5.2.6,<6.0.0",
"celery-redbeat>=2.0.0,<3.0.0",
"psycopg2>=2.9.3,<3.0.0",
"python-dotenv>=0.16.0,<1.0.0",
"redis>=4.3.1,<5.0.0",
"requests>=2.27.1,<3.0.0",
"SQLAlchemy>=1.4.36,<2.0.0",
],
python_requires='>=3.8,<3.11',
extras_require=extras_require,
py_modules=['liquidation_bot'],
license="MIT",
zip_safe=False,
keywords='ethereum',
packages=find_packages(exclude=["tests", "tests.*"]),
package_data={"web3": ["py.typed"]},
classifiers=[
'Natural Language :: English',
'Programming Language :: Python :: 3.8',
],
)