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

try installing lol

parent 8a83585c
No related branches found
No related tags found
No related merge requests found
...@@ -9,6 +9,7 @@ script: ...@@ -9,6 +9,7 @@ script:
install: install:
- pip install coverage codeclimate-test-reporter - pip install coverage codeclimate-test-reporter
- pip install -r requirements.txt - pip install -r requirements.txt
- python setup.py install
after_success: after_success:
- CODECLIMATE_REPO_TOKEN=1ae9ad875b032584481e1c3fe274096ffe806e953ebc6f4b6a043357fa70829e codeclimate-test-reporter - CODECLIMATE_REPO_TOKEN=1ae9ad875b032584481e1c3fe274096ffe806e953ebc6f4b6a043357fa70829e codeclimate-test-reporter
# coding=UTF-8 # coding=UTF-8
from setuptools import setup from setuptools import setup, find_packages
setup(name='satella', setup(name='satella',
version='2.0b1', version='2.0b1',
...@@ -7,19 +7,11 @@ setup(name='satella', ...@@ -7,19 +7,11 @@ setup(name='satella',
author=u'Piotr Maślanka', author=u'Piotr Maślanka',
author_email='piotrm@smok.co', author_email='piotrm@smok.co',
keywords=['ha', 'high availability', 'scalable', 'scalability', 'server'], keywords=['ha', 'high availability', 'scalable', 'scalability', 'server'],
packages=[ packages=find_packages(exclude=['tests.*', 'tests', 'examples.*', 'examples']),
'satella',
'satella.coding',
'satella.coding.debug',
'satella.coding.structures',
'satella.posix',
'satella.instrumentation',
'satella.state',
],
install_requires=[ install_requires=[
"six", "six",
"monotonic", "monotonic",
"typing" "backports.typing"
], ],
tests_require=[ tests_require=[
"nose", "mock", "coverage" "nose", "mock", "coverage"
......
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