-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
36 lines (34 loc) · 1.1 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
import os
from setuptools import setup
from keratin import VERSION
f = open(os.path.join(os.path.dirname(__file__), 'README.md'))
readme = f.read()
f.close()
setup(
name = 'Keratin',
version = ".".join(map(str, VERSION)),
description = 'Keratin is a static site generator that tries very hard '
'not to suck.',
long_description = readme,
author = 'JK Laiho',
author_email = '[email protected]',
url = 'https://github.com/jklaiho/keratin',
packages = ['keratin'],
zip_safe = False,
test_suite = 'tests',
entry_points = {
'console_scripts': ['keratin = keratin.cli:main']
},
classifiers = [
'Development Status :: 3 - Alpha',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: POSIX',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Text Processing :: Markup',
'Topic :: Text Processing :: Markup :: HTML'
],
)