mirror of
https://github.com/ThePhD/sol2.git
synced 2024-03-22 13:10:44 +08:00
Fix pip install instruction
This commit is contained in:
parent
e8178bbe65
commit
07890f49d3
|
@ -31,7 +31,7 @@ Download the package or add it to your ``requirements.txt`` file:
|
||||||
|
|
||||||
.. code-block:: bash
|
.. code-block:: bash
|
||||||
|
|
||||||
$ pip install -e git+git://github.com/tony/sphinx_rtd_theme@pypi#egg=sphinx_rtd_theme
|
$ pip install sphinx_rtd_theme
|
||||||
|
|
||||||
In your ``conf.py`` file:
|
In your ``conf.py`` file:
|
||||||
|
|
||||||
|
|
13
setup.py
13
setup.py
|
@ -1,11 +1,14 @@
|
||||||
# -*- coding: utf-8 -*-
|
# -*- coding: utf-8 -*-
|
||||||
"""`sphinxcontrib-rtd_theme` lives on `Github`_.
|
"""`sphinx_rtd_theme` lives on `Github`_.
|
||||||
|
|
||||||
.. _github: https://www.github.com/snide/sphinx_rtd_theme
|
.. _github: https://www.github.com/snide/sphinx_rtd_theme
|
||||||
|
|
||||||
"""
|
"""
|
||||||
from setuptools import setup, find_packages
|
from setuptools import setup, find_packages
|
||||||
from sphinx_rtd_theme import __version__
|
|
||||||
|
version = {}
|
||||||
|
with open("dist/sphinx_rtd_theme/__init__.py") as fp:
|
||||||
|
exec(fp.read(), version)
|
||||||
|
|
||||||
try:
|
try:
|
||||||
from pip.req import parse_requirements
|
from pip.req import parse_requirements
|
||||||
|
@ -22,8 +25,8 @@ else:
|
||||||
|
|
||||||
|
|
||||||
setup(
|
setup(
|
||||||
name='sphinxcontrib_rtd_theme',
|
name='sphinx_rtd_theme',
|
||||||
version=__version__,
|
version=version['__version__'],
|
||||||
url='https://github.com/snide/sphinx_rtd_theme/',
|
url='https://github.com/snide/sphinx_rtd_theme/',
|
||||||
license='MIT',
|
license='MIT',
|
||||||
author='Dave Snider',
|
author='Dave Snider',
|
||||||
|
@ -32,7 +35,7 @@ setup(
|
||||||
long_description=open('README.rst').read(),
|
long_description=open('README.rst').read(),
|
||||||
zip_safe=False,
|
zip_safe=False,
|
||||||
packages=find_packages(),
|
packages=find_packages(),
|
||||||
package_data = { "sphinx_rtd_theme": ['*.*', 'static/*.*', 'static/*/*.*'] },
|
package_data = { "dist/sphinx_rtd_theme": ['*.*', 'static/*.*', 'static/*/*.*'] },
|
||||||
install_requires=['sphinx>=1.1'],
|
install_requires=['sphinx>=1.1'],
|
||||||
classifiers=[
|
classifiers=[
|
||||||
'Development Status :: 3 - Alpha',
|
'Development Status :: 3 - Alpha',
|
||||||
|
|
Loading…
Reference in New Issue
Block a user