-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
executable file
·45 lines (43 loc) · 1.37 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
#!/usr/bin/env python
import setuptools
with open('README.md', 'r') as readme_file:
long_description = readme_file.read()
setuptools.setup(
name='celery-farmer',
version='0.2.2',
author='Wolt Enterprises Oy',
author_email='[email protected]',
description='Farmer will monitor how the Celery cluster is behaving',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/woltapp/celery-farmer',
packages=setuptools.find_packages(where='src'),
package_dir={'': 'src'},
setup_requires=[
'pytest-runner',
],
tests_require=[
'pytest',
'pytest-cov',
],
install_requires=[
'statsd>=3.2.0,<5.0',
'redis>=2.10.0,<5.0',
'celery>=4.0,<6.0',
'click>=6.7,<9.0',
],
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: Implementation :: CPython',
],
entry_points=dict(
console_scripts='celery-farmer = celery_farmer.cli:cli'
),
)