2021-02-14 16:54:27 +01:00
|
|
|
# Copyright (c) 2016-2021 Martin Donath <martin.donath@squidfunk.com>
|
2016-02-04 15:03:20 +01:00
|
|
|
|
|
|
|
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
# of this software and associated documentation files (the "Software"), to
|
|
|
|
# deal in the Software without restriction, including without limitation the
|
|
|
|
# rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
|
|
|
|
# sell copies of the Software, and to permit persons to whom the Software is
|
|
|
|
# furnished to do so, subject to the following conditions:
|
|
|
|
|
|
|
|
# The above copyright notice and this permission notice shall be included in
|
|
|
|
# all copies or substantial portions of the Software.
|
|
|
|
|
|
|
|
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
# FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
|
|
# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
|
|
|
|
# IN THE SOFTWARE.
|
|
|
|
|
2017-01-14 23:05:18 +01:00
|
|
|
import json
|
2016-02-04 15:03:20 +01:00
|
|
|
from setuptools import setup, find_packages
|
|
|
|
|
2017-01-14 23:05:18 +01:00
|
|
|
# Load package.json contents
|
|
|
|
with open("package.json") as data:
|
|
|
|
package = json.load(data)
|
|
|
|
|
2017-03-30 23:34:21 +02:00
|
|
|
# Load list of dependencies
|
|
|
|
with open("requirements.txt") as data:
|
|
|
|
install_requires = [
|
|
|
|
line for line in data.read().split("\n")
|
2020-11-30 16:25:30 +01:00
|
|
|
if line and not line.startswith("#")
|
2017-03-30 23:34:21 +02:00
|
|
|
]
|
|
|
|
|
2019-03-28 20:50:04 +01:00
|
|
|
# Load README contents
|
2019-03-28 20:50:59 +01:00
|
|
|
with open("README.md", encoding = "utf-8") as data:
|
2019-03-28 20:50:04 +01:00
|
|
|
long_description = data.read()
|
|
|
|
|
2016-02-04 15:03:20 +01:00
|
|
|
# Package description
|
|
|
|
setup(
|
2019-10-24 09:30:05 +02:00
|
|
|
name = "mkdocs-material",
|
2017-01-14 23:05:18 +01:00
|
|
|
version = package["version"],
|
|
|
|
url = package["homepage"],
|
|
|
|
license = package["license"],
|
|
|
|
description = package["description"],
|
2019-03-28 20:50:04 +01:00
|
|
|
long_description = long_description,
|
|
|
|
long_description_content_type = "text/markdown",
|
2017-01-14 23:05:18 +01:00
|
|
|
author = package["author"]["name"],
|
|
|
|
author_email = package["author"]["email"],
|
|
|
|
keywords = package["keywords"],
|
2019-09-28 19:32:02 +02:00
|
|
|
classifiers = [
|
|
|
|
"Development Status :: 5 - Production/Stable",
|
2020-04-05 19:25:31 +02:00
|
|
|
"Environment :: Web Environment",
|
2019-09-28 19:32:02 +02:00
|
|
|
"License :: OSI Approved :: MIT License",
|
|
|
|
"Programming Language :: JavaScript",
|
|
|
|
"Programming Language :: Python",
|
|
|
|
"Topic :: Documentation",
|
2020-04-05 19:25:31 +02:00
|
|
|
"Topic :: Software Development :: Documentation",
|
2019-09-28 19:32:02 +02:00
|
|
|
"Topic :: Text Processing :: Markup :: HTML"
|
|
|
|
],
|
2020-04-10 11:55:39 +02:00
|
|
|
packages = find_packages(exclude = ["src"]),
|
2016-02-04 15:03:20 +01:00
|
|
|
include_package_data = True,
|
2017-03-30 23:34:21 +02:00
|
|
|
install_requires = install_requires,
|
2016-02-04 15:03:20 +01:00
|
|
|
entry_points = {
|
2017-01-02 08:58:18 +01:00
|
|
|
"mkdocs.themes": [
|
|
|
|
"material = material",
|
2016-02-04 15:03:20 +01:00
|
|
|
]
|
|
|
|
},
|
|
|
|
zip_safe = False
|
2016-12-18 19:42:08 +01:00
|
|
|
)
|