Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.
Repozitorijs ir arhivēts. Tam var aplūkot failus un to var klonēt, bet nevar iesūtīt jaunas izmaiņas, kā arī atvērt jaunas problēmas/izmaiņu pieprasījumus.
 
 
 
 
 
 

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