Skip to content
This repository has been archived by the owner on Jan 12, 2021. It is now read-only.

Commit

Permalink
fix project description on pypi
Browse files Browse the repository at this point in the history
  • Loading branch information
orsinium committed Apr 22, 2019
1 parent 37421aa commit f013fc9
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 6 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
# ![DepHell](./assets/logo.png)
![DepHell](./assets/logo.png)

[![MIT License](https://img.shields.io/pypi/l/dephell.svg)](https://github.com/dephell/dephell/blob/master/LICENSE)
[![Travis CI](https://travis-ci.org/dephell/dephell.svg?branch=master)](https://travis-ci.org/dephell/dephell)
[![Powered by DepHell](./assets/badge.svg)](./docs/badge.md)

**DepHell** -- project management for Python.

+ Manage dependencies: [convert between formats](https://dephell.readthedocs.io/en/latest/cmd-deps-convert.html), [install](https://dephell.readthedocs.io/en/latest/cmd-deps-install.html), lock, [add new](https://dephell.readthedocs.io/en/latest/cmd-deps-add.html), resolve conflicts.
+ Manage dependencies: [convert between formats](https://dephell.readthedocs.io/en/latest/cmd-deps-convert.html), [instаll](https://dephell.readthedocs.io/en/latest/cmd-deps-install.html), lock, [add new](https://dephell.readthedocs.io/en/latest/cmd-deps-add.html), resolve conflicts.
+ Manage virtual environments: [create](https://dephell.readthedocs.io/en/latest/cmd-venv-create.html), [remove](https://dephell.readthedocs.io/en/latest/cmd-venv-destroy.html), [inspect](https://dephell.readthedocs.io/en/latest/cmd-inspect-venv.html), [run shell](https://dephell.readthedocs.io/en/latest/cmd-venv-shell.html), [run commands inside](https://dephell.readthedocs.io/en/latest/cmd-venv-run.html).
+ [Install CLI tools](https://dephell.readthedocs.io/en/latest/cmd-jail-install.html) into isolated environments.
+ Manage packages: [install](https://dephell.readthedocs.io/en/latest/cmd-package-install.html), [list](https://dephell.readthedocs.io/en/latest/cmd-package-list.html), [search](https://dephell.readthedocs.io/en/latest/cmd-package-search.html) on PyPI.
Expand Down Expand Up @@ -38,7 +38,7 @@ See [installation documentation](https://dephell.readthedocs.io/en/latest/instal
1. [pipenv](https://pipenv.readthedocs.io/en/latest/):
1. [Pipfile](https://github.com/pypa/pipfile) (`pipfile`)
1. [Pipfile.lock](https://stackoverflow.com/a/49867443/8704691) (`pipfilelock`)
1. [poetry](https://github.com/sdispater/poetry):
1. [pоetry](https://github.com/sdispater/poetry):
1. [pyproject.toml](https://poetry.eustace.io/docs/pyproject/) (`poetry`)
1. [poetry.lock](https://poetry.eustace.io/docs/basic-usage/#installing-without-poetrylock) (`poetrylock`)
1. Other:
Expand Down
2 changes: 1 addition & 1 deletion dephell/__version__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@

__version__ = '0.5.4'
__version__ = '0.5.6'
__author__ = 'Gram (@orsinium)'
__license__ = 'MIT'
4 changes: 3 additions & 1 deletion dephell/controllers/readme.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,9 @@ def as_rst(self) -> str:
if self.markup == 'rst':
return self.path.read_text()
if self.markup == 'md':
return convert(self.path.read_text())
content = convert(self.path.read_text())
content = content.replace('.. code-block:: toml', '.. code-block::')
return content
if self.markup == 'txt':
return self.path.read_text()
raise ValueError('invalid markup')
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ import_heading_localfolder = "app"

[tool.poetry]
name = "dephell"
version = "0.5.4"
version = "0.5.6"
authors = ["Gram <master_fess@mail.ru>"]
description = "Dependency resolution for Python"
readme = "README.md"
Expand Down

0 comments on commit f013fc9

Please sign in to comment.