-
Notifications
You must be signed in to change notification settings - Fork 9
/
setup.py
executable file
Β·46 lines (42 loc) Β· 1.44 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
from setuptools import setup
from mkdocs_dracula_theme import __version__
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(
name="mkdocs-dracula-theme",
fullname='mkdocs-dracula-theme',
author='Fernando Celmer',
version=__version__,
author_email='email@fernandocelmer.com',
url='https://github.com/dracula/mkdocs',
description="π§π»ββοΈ Dark theme for Mkdocs",
long_description=long_description,
long_description_content_type="text/markdown",
classifiers=[
'Development Status :: 4 - Beta',
"Operating System :: OS Independent",
"License :: OSI Approved :: MIT License",
'Intended Audience :: Developers',
'Natural Language :: English',
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
],
install_requires=[
'mkdocs>=1.4.3'
],
packages=["mkdocs_dracula_theme"],
package_data={'mkdocs_dracula_theme': ['*','*/*','*/*/*']},
include_package_data=True,
python_requires=">=3.6",
zip_safe=True,
entry_points={
'mkdocs.themes': [
'dracula = mkdocs_dracula_theme',
]
},
)