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.
 
 
 

42 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. 'commando',
  12. 'jinja2',
  13. 'pyYAML',
  14. 'markdown'
  15. ),
  16. scripts=['main.py'],
  17. entry_points={
  18. 'console_scripts': [
  19. 'hyde = main:main'
  20. ]
  21. },
  22. license='MIT',
  23. classifiers=[
  24. 'Development Status :: 3 - Alpha',
  25. 'Environment :: Console',
  26. 'Intended Audience :: End Users/Desktop',
  27. 'Intended Audience :: Developers',
  28. 'Intended Audience :: System Administrators',
  29. 'License :: OSI Approved :: MIT License',
  30. 'Operating System :: MacOS :: MacOS X',
  31. 'Operating System :: Unix',
  32. 'Operating System :: POSIX',
  33. 'Programming Language :: Python',
  34. 'Programming Language :: Python :: 2.7',
  35. 'Topic :: Software Development',
  36. 'Topic :: Software Development :: Build Tools',
  37. 'Topic :: Software Development :: Websites',
  38. 'Topic :: Software Development :: Static Websites',
  39. ],
  40. )