yasnippet-snippets/snippets/python-mode/setup

15 lines
255 B
Plaintext
Raw Permalink Normal View History

2011-02-17 11:35:32 +01:00
# -*- mode: snippet -*-
# name: setup
# key: setup
2013-11-27 22:54:30 +01:00
# group: distribute
2011-02-17 11:35:32 +01:00
# --
2012-02-05 15:01:52 +01:00
from setuptools import setup
2011-02-17 11:35:32 +01:00
package = '${1:name}'
version = '${2:0.1}'
2012-02-05 15:01:52 +01:00
setup(name=package,
version=version,
2011-02-17 11:35:32 +01:00
description="${3:description}",
url='${4:url}'$0)