-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
47 lines (44 loc) · 1.14 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import (
find_packages,
setup,
)
extras_require = {
'linter': [
"flake8==3.7.9"
],
'dev': [
"twine==3.1.1"
],
}
extras_require['dev'] = (
extras_require['linter'] + extras_require['dev']
)
setup(
name='skale-checks',
version='1.1',
description='Checks for SKALE infrastructure',
long_description_markdown_filename='README.md',
author='SKALE Labs',
author_email='[email protected]',
url='https://github.com/skalenetwork/skale-checks',
install_requires=[
"skale.py",
"elasticsearch==7.12.0"
],
python_requires='>=3.11,<4',
extras_require=extras_require,
keywords=['skale', 'checks'],
packages=find_packages(),
package_data={
'skale_checks': ['requirements.yaml']
},
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)',
'Natural Language :: English',
'Programming Language :: Python :: 3.11',
]
)