-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
67 lines (64 loc) · 2.15 KB
/
setup.py
File metadata and controls
67 lines (64 loc) · 2.15 KB
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
#
# setup.py - Package initialization
#
# Copyright (C) 2018-2023 Angel Linares Zapater
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License, version 2, as
# published by the Free Software Foundation. See the COPYING file.
#
# This program is distributed WITHOUT ANY WARRANTY; without even the
# implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
#
import setuptools
# Set README file
long_description = open("README.rst", "r").read()
long_description_content_type="text/x-rst"
setuptools.setup(
name='doxphinx',
version='1.x.z',
license='GPL version 2',
description='doxphinx for Sphinx',
long_description=long_description,
long_description_content_type=long_description_content_type,
author='Angel Linares Zapater',
author_email='alz@phyglos.org',
url="http://doxphinx.org/",
project_urls={
"Documentation": "https://docs.phyglos.org/doxphinx/",
"Source Code": "https://github.com/phyglos/doxphinx/",
},
# packages=setuptools.find_packages(),
packages=['doxphinx'],
package_data={
'doxphinx': [
'theme.conf',
'*.html',
'static/*.*',
'ext/localtoc/*.*',
]
},
# include_package_data=True,
install_requires=['sphinx>=7.0.0'],
keywords='doxphinx, sphinx, phyglos',
classifiers=[
"Development Status :: 5 - Production/Stable",
"Framework :: Sphinx :: Extension",
"Framework :: Sphinx :: Theme",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Information Technology",
"Intended Audience :: Science/Research",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: GNU General Public License v2 (GPLv2)",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.7",
"Topic :: Documentation",
"Topic :: Software Development :: Documentation",
],
entry_points = {
'sphinx.html_themes': [
'doxphinx = doxphinx',
]
},
)