A fork of hyde, the static site generation. Some patches will be pushed upstream.
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.
 
 
 

45 lines
1.4 KiB

  1. from setuptools import setup, find_packages
  2. from hyde.version import __version__
  3. setup(name='hyde',
  4. version=__version__,
  5. description='hyde is a pythonic static website generator',
  6. author='Lakshmi Vyas',
  7. author_email='lakshmi.vyas@gmail.com',
  8. url='http://ringce.com/hyde',
  9. packages=find_packages(),
  10. install_requires=(
  11. 'argparse',
  12. 'commando',
  13. 'jinja2',
  14. 'pyYAML',
  15. 'markdown',
  16. 'smartypants',
  17. 'pygments'
  18. ),
  19. scripts=['main.py'],
  20. entry_points={
  21. 'console_scripts': [
  22. 'hyde = main:main'
  23. ]
  24. },
  25. license='MIT',
  26. classifiers=[
  27. 'Development Status :: 3 - Alpha',
  28. 'Environment :: Console',
  29. 'Intended Audience :: End Users/Desktop',
  30. 'Intended Audience :: Developers',
  31. 'Intended Audience :: System Administrators',
  32. 'License :: OSI Approved :: MIT License',
  33. 'Operating System :: MacOS :: MacOS X',
  34. 'Operating System :: Unix',
  35. 'Operating System :: POSIX',
  36. 'Programming Language :: Python',
  37. 'Programming Language :: Python :: 2.7',
  38. 'Topic :: Software Development',
  39. 'Topic :: Software Development :: Build Tools',
  40. 'Topic :: Software Development :: Websites',
  41. 'Topic :: Software Development :: Static Websites',
  42. ],
  43. )