Skip to content
Snippets Groups Projects
Commit 117b4f30 authored by Piotr Maślanka's avatar Piotr Maślanka
Browse files

moved some stuff from setup.py into setup.cfg

parent c15bf039
No related branches found
No related tags found
No related merge requests found
# coding: utf-8
[metadata]
name = satella
keywords = ha, high availability, scalable, scalability, server, metrics, tracing
long-description = file: README.md
long-description-content-type = text/markdown; charset=UTF-8
license_files = LICENSE
......@@ -36,3 +37,7 @@ max-line-length = 100
[bdist_wheel]
universal = 1
[options]
install_requires =
psutil
python_requires = !=2.7.*,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*
......@@ -2,14 +2,9 @@ from setuptools import setup, find_packages
from satella import __version__
setup(keywords=['ha', 'high availability', 'scalable', 'scalability', 'server', 'metrics'],
packages=find_packages(include=['satella', 'satella.*']),
setup(packages=find_packages(include=['satella', 'satella.*']),
version=__version__,
install_requires=[
'psutil'
],
test_suite='nose2.collector.collector',
python_requires='!=2.7.*,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*',
extras_require={
'HTTPJSONSource': ['requests'],
'YAMLSource': ['pyyaml'],
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment