Skip to content

Commit

Permalink
Migrate project to Pipenv
Browse files Browse the repository at this point in the history
This commit updates Pipenv, corrects static complaints, reverts
install_requires to setup.cfg, and removes extra requirements files.

Signed-off-by: Nathan Gillett <[email protected]>
  • Loading branch information
negillett committed Feb 7, 2022
1 parent f7d59cc commit ca549cf
Show file tree
Hide file tree
Showing 15 changed files with 224 additions and 1,358 deletions.
72 changes: 56 additions & 16 deletions Pipfile
Original file line number Diff line number Diff line change
@@ -1,24 +1,64 @@
[[source]]
name = "pypi"
url = "https://pypi.org/simple"
verify_ssl = true

[dev-packages]
flake8 = "*"
coverage = "*"
Sphinx = "*"
pipenv-setup = "*"
name = "pypi"

[packages]
src = {editable = true, path = "./"}
awscli = "*"
numpy = "*"
affine = "*"
pydantic = "*"
python-dotenv = "*"
requests = "*"
s3fs = "*"
zarr = "*"
affine = "==2.3.0"
aiobotocore = "==2.1.0"
aiohttp = "==3.8.1"
aioitertools = "==0.8.0"
aiosignal = "==1.2.0"
asciitree = "==0.3.3"
async-timeout = "==4.0.2"
attrs = "==21.4.0"
botocore = "==1.23.24"
certifi = "==2021.10.8"
charset-normalizer = "==2.0.10"
fasteners = "==0.17.3"
frozenlist = "==1.3.0"
fsspec = "==2022.01.0"
idna = "==3.3"
jmespath = "==0.10.0"
multidict = "==6.0.2"
numcodecs = "==0.9.1"
numpy = "==1.22.0"
pydantic = "==1.9.0"
python-dateutil = "==2.8.2"
python-dotenv = "==0.19.2"
requests = "==2.27.1"
s3fs = "==2022.1.0"
six = "==1.16.0"
typing-extensions = "==4.0.1"
urllib3 = "==1.26.8"
wrapt = "==1.13.3"
yarl = "==1.7.2"
zarr = "==2.10.3"

[dev-packages]
attrs = "==21.4.0"
black = "==21.12b0"
click = "==8.0.3"
coverage = {version = "==6.3", extras = ["toml"]}
flake8 = "==4.0.1"
iniconfig = "==1.1.1"
isort = "==5.10.1"
mccabe = "==0.6.1"
mypy = "==0.931"
mypy-extensions = "==0.4.3"
pathspec = "==0.9.0"
platformdirs = "==2.4.1"
pluggy = "==1.0.0"
py = "==1.11.0"
pycodestyle = "==2.8.0"
pyflakes = "==2.4.0"
pyparsing = "==3.0.7"
pytest = "==6.2.5"
pytest-cov = "==3.0.0"
toml = "==0.10.2"
tomli = "==1.2.3"
typing-extensions = "==4.0.1"
tox = "*"

[requires]
python_version = "3.8"
Loading

0 comments on commit ca549cf

Please sign in to comment.