forked from lethain/aym-cms
-
Notifications
You must be signed in to change notification settings - Fork 81
/
Copy pathsetup.py
42 lines (41 loc) · 1.45 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
from setuptools import setup, find_packages
setup(name='hyde',
version='0.5.3',
description='Hyde is a static website generator originally inspired by Jekyll',
author='Lakshmi Vyas',
author_email='[email protected]',
url='http://ringce.com/hyde',
packages=find_packages(),
install_requires=(
'django',
'pyYAML',
'markdown',
'pygments',
'pyrss2gen',
),
scripts=['hyde.py', 'clyde.py'],
entry_points={
'console_scripts': [
'hyde = hyde:main',
'clyde = clyde.main'
]
},
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: End Users/Desktop',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: MIT License',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Unix',
'Operating System :: POSIX',
'Programming Language :: Python',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Topic :: Software Development',
'Topic :: Software Development :: Build Tools',
'Topic :: Software Development :: Websites',
'Topic :: Software Development :: Static Websites',
],
)