project_init 3.1.23

Quickly initialize projects from a template.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
from setuptools import setup

setup(name='{{ project }}',
      version='{{ version }}',
      description='{{ description }}',
      url='http://github.com/{{ github_username}}/{{ project }}',
      author='{{ name }}',
      author_email='{{ email }}',
      license='{{ license }}',
      packages=['{{ project }}'],
      scripts=['bin/{{ project }}'],
      install_requires=[],
      zip_safe=False)