You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.
 
 
 
 
 
 

30 lines
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. )