This repository was archived by the owner on Jun 4, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
49 lines (45 loc) · 1.44 KB
/
setup.py
File metadata and controls
49 lines (45 loc) · 1.44 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
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
import os
version = '1.0.3'
long_description = '\n'.join([
open("README.rst").read(),
open("AUTHORS.rst").read(),
open("CHANGES.rst").read(),
])
classifiers = [
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 3",
"Topic :: Software Development",
"Topic :: Software Development :: Documentation",
"Topic :: Text Processing :: Markup",
"Framework :: Sphinx",
"Framework :: Sphinx :: Theme",
]
setup(
name='sphinxjp.themes.sphinxjp',
version=version,
description='A sphinx theme for sphinx-users.jp site.',
long_description=long_description,
classifiers=classifiers,
keywords=['sphinx', 'reStructuredText', 'theme'],
author='sphinx-users.jp',
author_email='shimizukawa@gmail.com',
url='https://github.com/sphinxjp/sphinxjp.themes.sphinxjp',
license='MIT',
namespace_packages=['sphinxjp', 'sphinxjp.themes'],
packages=find_packages('.'),
include_package_data=True,
install_requires=[
'setuptools',
'sphinx>=1.6',
],
entry_points="""
[sphinx.html_themes]
sphinxjp = sphinxjp.themes.sphinxjp
""",
zip_safe=False,
)