您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
此仓库已存档。您可以查看文件和克隆,但不能推送或创建工单/合并请求。
 
 
 
 
 
 

30 行
866 B

  1. from setuptools import setup
  2. setup(
  3. name='sphinx-nameko-theme',
  4. version='0.0.3',
  5. author='onefinestay',
  6. author_email='nameko-devs@onefinestay.com',
  7. description='Sphinx Nameko Theme',
  8. url='https://github.com/onefinestay/sphinx-nameko-theme',
  9. license='MIT',
  10. classifiers=[
  11. 'Intended Audience :: Developers',
  12. 'License :: OSI Approved :: MIT License',
  13. 'Natural Language :: English',
  14. 'Operating System :: OS Independent',
  15. 'Programming Language :: Python',
  16. 'Topic :: Internet',
  17. 'Topic :: Software Development :: Documentation',
  18. ],
  19. packages=['sphinx_nameko_theme'],
  20. install_requires=['sphinx'],
  21. entry_points = {
  22. 'sphinx_themes': [
  23. 'path = sphinx_nameko_theme:get_html_theme_path',
  24. ]
  25. },
  26. include_package_data=True,
  27. zip_safe=False
  28. )