File: setup.py

package info (click to toggle)
kid 0.9.6-2
  • links: PTS, VCS
  • area: main
  • in suites: squeeze, wheezy
  • size: 2,264 kB
  • ctags: 4,633
  • sloc: python: 7,417; makefile: 120; sh: 47; xml: 4
file content (46 lines) | stat: -rwxr-xr-x 1,438 bytes parent folder | download | duplicates (4)
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
43
44
45
46
#!/usr/bin/env python

# bootstrap setuptools if necessary
from ez_setup import use_setuptools
use_setuptools()

import os

execfile(os.path.join("kid", "release.py"))

from setuptools import setup, find_packages

setup(
    name="kid",
    version=version,
    description= "A simple and pythonic XML template language",
    author=author,
    author_email=email,
    license=license,
    long_description=long_description,
    keywords = "xml template html web",
    url = "http://www.kid-templating.org",
    download_url = "http://www.kid-templating.org/dist/%s/kid-%s.tar.gz" % \
                   (version, version),
    entry_points = {
        'console_scripts': [
          'kid = kid.run:main',
          'kidc = kid.compile:main',
        ],
    },
    py_modules=[],
    packages=["kid", 'kid.test'],
    install_requires=[],
    classifiers = [
            'Development Status :: 4 - Beta',
            'Environment :: Console',
            'Environment :: Web Environment',
            'Intended Audience :: Developers',
            'License :: OSI Approved :: MIT License',
            'Operating System :: OS Independent',
            'Programming Language :: Python',
            'Topic :: Internet :: WWW/HTTP',
            'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
            'Topic :: Software Development :: Libraries :: Python Modules',
            'Topic :: Text Processing :: Markup :: XML'
        ])