Skip to content

Commit

Permalink
Fixing twine build
Browse files Browse the repository at this point in the history
  • Loading branch information
edyan committed May 23, 2021
1 parent 4674aa3 commit 2bff607
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 16 deletions.
9 changes: 5 additions & 4 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,18 +1,19 @@
include README.md
include README.rst
include LICENSE
include stakkr/static/config_default.yml
include stakkr/static/config_schema.yml
include stakkr/static/docker-compose.yml
include stakkr/static/docker-compose.subnet.yml
include stakkr/static/proxy/traefik.toml
include stakkr/static/docker-compose.yml
include stakkr/static/proxy/config.yml
include stakkr/static/proxy/ssl/traefik.localhost.crt
include stakkr/static/proxy/ssl/traefik.localhost.key
include stakkr/static/proxy/traefik.yml
include stakkr/static/recipes/*.yml
include stakkr/static/services/*.yml
include stakkr/tpls/bash_completion
include stakkr/tpls/conf/mysql-override/mysqld.cnf
include stakkr/tpls/conf/php-fpm-override/example.conf
include stakkr/tpls/conf/php-fpm-override/README
include stakkr/tpls/conf/xhgui-override/config.php
include stakkr/tpls/home/www-data/.bashrc
include stakkr/tpls/bash_completion
include stakkr/tpls/stakkr.yml.tpl
18 changes: 9 additions & 9 deletions README.rst
Original file line number Diff line number Diff line change
@@ -1,22 +1,22 @@
.. image:: https://raw.githubusercontent.com/edyan/stakkr/master/docs/stakkr-logo.png
:width: 200px
:align: center
:width: 200px
:align: center

Overview
========

.. image:: https://scrutinizer-ci.com/g/stakkr-org/stakkr/badges/quality-score.png?b=master
:target: https://scrutinizer-ci.com/g/stakkr-org/stakkr
:target: https://scrutinizer-ci.com/g/stakkr-org/stakkr
.. image:: https://travis-ci.com/stakkr-org/stakkr.svg?branch=master
:target: https://travis-ci.com/stakkr-org/stakkr
:target: https://travis-ci.com/stakkr-org/stakkr
.. image:: https://img.shields.io/pypi/l/stakkr.svg
:target: https://pypi.python.org/pypi/stakkr
:target: https://pypi.python.org/pypi/stakkr
.. image:: https://api.codeclimate.com/v1/badges/a11947de978e420ef6fd/maintainability
:target: https://codeclimate.com/github/stakkr-org/stakkr/maintainability
:alt: Maintainability
:target: https://codeclimate.com/github/stakkr-org/stakkr/maintainability
:alt: Maintainability
.. image:: https://api.codeclimate.com/v1/badges/a11947de978e420ef6fd/test_coverage
:target: https://codeclimate.com/github/stakkr-org/stakkr/test_coverage
:alt: Test Coverage
:target: https://codeclimate.com/github/stakkr-org/stakkr/test_coverage
:alt: Test Coverage


Stakkr
Expand Down
2 changes: 1 addition & 1 deletion docs/pages/installation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ Then install stakkr and its dependencies :

.. code:: bash
$ python -m pip install --upgrade pip wheel
$ python -m pip install --upgrade pip setuptools wheel
$ python -m pip install -e .
$ python -m pip install -r requirements-dev.txt
$ stakkr-init
Expand Down
1 change: 1 addition & 0 deletions requirements-dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ pytest==6.2.4
pytest-cov==2.12.0
pytest-pep8==1.0.6
Pygments
setuptools
sphinx
sphinx-autobuild
sphinx-click
Expand Down
5 changes: 3 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,16 +20,17 @@ def readme():
name='stakkr',
version=__version__,
description='''
A configurable stack based on docker to run any combination
A configurable stack based on docker to run any combination
of services (PHP, MySQL, Apache, Nginx, Mongo, etc..)''',
long_description_content_type='text/x-rst',
long_description=readme(),
url='http://github.com/stakkr-org/stakkr',
author='Emmanuel Dyan',
author_email='emmanueldyan@gmail.com',
license='Apache 2.0',
packages=['stakkr'],
py_modules=['stakkr'],
python_requires='>=3.3',
python_requires='>=3.6',
entry_points='''[console_scripts]
stakkr=stakkr.cli:main
stakkr-init=stakkr.setup:init
Expand Down

0 comments on commit 2bff607

Please sign in to comment.