mirror of
https://github.com/squidfunk/mkdocs-material.git
synced 2024-06-14 11:52:32 +03:00
Formatting
This commit is contained in:
parent
b8c079fd8b
commit
bcacf4c328
12
setup.py
12
setup.py
@ -22,19 +22,19 @@ import json
|
|||||||
from setuptools import setup, find_packages
|
from setuptools import setup, find_packages
|
||||||
|
|
||||||
# Load package.json contents
|
# Load package.json contents
|
||||||
with open("package.json") as data:
|
with open("package.json") as f:
|
||||||
package = json.load(data)
|
package = json.load(f)
|
||||||
|
|
||||||
# Load list of dependencies
|
# Load list of dependencies
|
||||||
with open("requirements.txt") as data:
|
with open("requirements.txt") as f:
|
||||||
install_requires = [
|
install_requires = [
|
||||||
line for line in data.read().split("\n")
|
line for line in f.read().split("\n")
|
||||||
if line and not line.startswith("#")
|
if line and not line.startswith("#")
|
||||||
]
|
]
|
||||||
|
|
||||||
# Load README contents
|
# Load README contents
|
||||||
with open("README.md", encoding = "utf-8") as data:
|
with open("README.md", encoding = "utf-8") as f:
|
||||||
long_description = data.read()
|
long_description = f.read()
|
||||||
|
|
||||||
# Package description
|
# Package description
|
||||||
setup(
|
setup(
|
||||||
|
Loading…
Reference in New Issue
Block a user