forked from transferwise/cicada
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
40 lines (37 loc) · 1.07 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
#!/usr/bin/env python
from setuptools import setup, find_packages
with open("README.md") as f:
long_description = f.read()
setup(
name="cicada",
version="0.6.0",
description="Lightweight, agent-based, distributed scheduler",
long_description=long_description,
long_description_content_type="text/markdown",
author="Wise",
url="https://github.com/transferwise/cicada",
classifiers=[
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3 :: Only",
],
install_requires=[
"psycopg2-binary==2.9.5",
"pyyaml==6.0",
"croniter==1.3",
"tabulate==0.9",
"slack-sdk==3.19",
"backoff==2.2",
],
extras_require={
"dev": [
"pytest==7.3",
"pytest-cov==4.0",
"pytest-mock==3.10",
"black==22.12",
"flake8==6.0",
"freezegun==1.2",
]
},
entry_points={"console_scripts": ["cicada=cicada.cli:main"]},
packages=find_packages(include=["cicada", "cicada.*"]),
)