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

Commit

Permalink
Merge pull request #368 from jhermann/add-certifi
Browse files Browse the repository at this point in the history
add missing dependency for certifi
  • Loading branch information
orsinium committed Mar 12, 2020
2 parents 2fc5aff + 21038d2 commit 449c933
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 13 deletions.
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -146,6 +146,7 @@ pip = ">=18.0,<=19.3.1"
requests = "*"
tomlkit = "*"
yaspin = "*"
certifi = "*"

# lazy
appdirs = {optional = true, version = "*"}
Expand Down
24 changes: 11 additions & 13 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,8 @@
except ImportError:
from distutils.core import setup

# built-in
import os.path


readme = ''
here = os.path.abspath(os.path.dirname(__file__))
readme_path = os.path.join(here, 'README.rst')
Expand Down Expand Up @@ -56,15 +54,15 @@
package_dir={"": "."},
package_data={"dephell": ["templates/*.j2", "templates/*.sh"]},
install_requires=[
'aiohttp', 'attrs>=19.2.0', 'cerberus>=1.3', 'dephell-archive>=0.1.5',
'dephell-argparse>=0.1.1', 'dephell-changelogs',
'dephell-discover>=0.2.6', 'dephell-licenses>=0.1.6',
'dephell-links>=0.1.4', 'dephell-markers>=1.0.0',
'dephell-pythons>=0.1.11', 'dephell-setuptools>=0.2.1',
'dephell-shells>=0.1.3', 'dephell-specifier>=0.1.7',
'dephell-venvs>=0.1.16', 'dephell-versioning', 'jinja2', 'm2r',
'packaging', 'pip<=19.3.1,>=18.0', 'requests', 'ruamel.yaml', 'tomlkit',
'yaspin'
'aiohttp', 'attrs>=19.2.0', 'cerberus>=1.3', 'certifi',
'dephell-archive>=0.1.5', 'dephell-argparse>=0.1.1',
'dephell-changelogs', 'dephell-discover>=0.2.6',
'dephell-licenses>=0.1.6', 'dephell-links>=0.1.4',
'dephell-markers>=1.0.0', 'dephell-pythons>=0.1.11',
'dephell-setuptools>=0.2.1', 'dephell-shells>=0.1.3',
'dephell-specifier>=0.1.7', 'dephell-venvs>=0.1.16',
'dephell-versioning', 'jinja2', 'm2r', 'packaging',
'pip<=19.3.1,>=18.0', 'requests', 'ruamel.yaml', 'tomlkit', 'yaspin'
],
extras_require={
"dev": [
Expand All @@ -77,8 +75,8 @@
],
"full": [
"aiofiles", "appdirs", "autopep8", "bowler", "colorama", "docker",
"dockerpty", "fissix", "graphviz", "html5lib",
"pygments", "tabulate", "yapf"
"dockerpty", "fissix", "graphviz", "html5lib", "pygments",
"tabulate", "yapf"
],
"tests": ["aioresponses", "pytest", "requests-mock"]
},
Expand Down

0 comments on commit 449c933

Please sign in to comment.