forked from tbicr/osm-validator
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Move to pipenv, fix dependencies tbicr#29
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
Showing
5 changed files
with
852 additions
and
31 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 = "*" |
Oops, something went wrong.