Skip to content

Commit

Permalink
Move to pipenv, fix dependencies tbicr#29
Browse files Browse the repository at this point in the history
    move from requirements.txt to https://docs.pipenv.org/
    keep locked dependencies on Pipfile.lock
    fix dependencies: aio-libs/aiohttp#2662
    delete requirements.txt and requirements-dev.txt
  • Loading branch information
Jagrmi-C committed Jan 22, 2018
1 parent 7ba4325 commit 28cfd82
Show file tree
Hide file tree
Showing 5 changed files with 852 additions and 31 deletions.
44 changes: 44 additions & 0 deletions Pipfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
[[source]]

url = "https://pypi.python.org/simple"
verify_ssl = true
name = "pypi"


[requires]
python_version = '3.6'

[dev-packages]

aioresponses = "==0.3.0"
"flake8" = "*"
isort = "*"
pytest = "*"
pytest-aiohttp = "*"
pytest-asyncio = "*"
pytest-mock = "*"
tox = "*"


[packages]

aioauth-client = "*"
aiodns = "*"
aiohttp = "*"
aiohttp-devtools = "*"
"aiohttp_jinja2" = "*"
aiohttp_session = "*"
aiopg = "*"
aioredis = "*"
alembic = "*"
cchardet = "*"
cryptography = "*"
"GeoAlchemy2" = "*"
hiredis = "*"
"Jinja2" = "*"
lxml = "*"
Pillow = "*"
SQLAlchemy = "*"
Shapely = "*"
requests = "*"
trafaret = "*"
Loading

0 comments on commit 28cfd82

Please sign in to comment.