It works better when dependencies are installed. Who knew?

This commit is contained in:
Łukasz Langa 2018-06-06 17:13:51 -07:00
parent 7ba4725993
commit 75eb91443e
3 changed files with 14 additions and 5 deletions

View File

@ -7,6 +7,7 @@ name = "pypi"
attrs = ">=17.4.0"
click = ">=6.5"
appdirs = "*"
toml = ">=0.9.4"
[dev-packages]
pre-commit = "*"

16
Pipfile.lock generated
View File

@ -1,7 +1,7 @@
{
"_meta": {
"hash": {
"sha256": "4bf5b65d243847bc4d7a840a9a1f36e975696dc84fdbd962454712ab8978190b"
"sha256": "ac93441465d67f28d5888486c43ced0b49c4a42c315a8d453064a6441fbf3de0"
},
"pipfile-spec": 6,
"requires": {},
@ -37,6 +37,13 @@
],
"index": "pypi",
"version": "==6.7"
},
"toml": {
"hashes": [
"sha256:8e86bd6ce8cc11b9620cb637466453d94f5d57ad86f17e98a98d1f73e3baab2d"
],
"index": "pypi",
"version": "==0.9.4"
}
},
"develop": {
@ -453,15 +460,16 @@
},
"sphinxcontrib-websupport": {
"hashes": [
"sha256:7a85961326aa3a400cd4ad3c816d70ed6f7c740acd7ce5d78cd0a67825072eb9",
"sha256:f4932e95869599b89bf4f80fc3989132d83c9faa5bf633e7b5e0c25dffb75da2"
"sha256:68ca7ff70785cbe1e7bccc71a48b5b6d965d79ca50629606c7861a21b206d9dd",
"sha256:9de47f375baf1ea07cdb3436ff39d7a9c76042c10a769c52353ec46e4e8fc3b9"
],
"version": "==1.0.1"
"version": "==1.1.0"
},
"toml": {
"hashes": [
"sha256:8e86bd6ce8cc11b9620cb637466453d94f5d57ad86f17e98a98d1f73e3baab2d"
],
"index": "pypi",
"version": "==0.9.4"
},
"tqdm": {

View File

@ -41,7 +41,7 @@ def get_version() -> str:
package_data={"blib2to3": ["*.txt"]},
python_requires=">=3.6",
zip_safe=False,
install_requires=["click>=6.5", "attrs>=17.4.0", "appdirs"],
install_requires=["click>=6.5", "attrs>=17.4.0", "appdirs", "toml>=0.9.4"],
test_suite="tests.test_black",
classifiers=[
"Development Status :: 4 - Beta",