~myfreeweb/pake/mainline

1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/usr/bin/env python
# coding=utf-8
from setuptools import setup

setup(name='Pake',
      version='1.0',
      description='Pythonic Make',
      author='MyFreeWeb',
      author_email='me@myfreeweb.ru',
#      url='http://launchpad.net/pake',
      packages=['pakeapi'],
      scripts=['pake'],
      install_requires=['pyyaml'],
      )