Klimi's new dotfiles with stow.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
255 B

4 years ago
  1. # -*- mode: snippet -*-
  2. # name: setup
  3. # key: setup
  4. # group: distribute
  5. # --
  6. from setuptools import setup
  7. package = '${1:name}'
  8. version = '${2:0.1}'
  9. setup(name=package,
  10. version=version,
  11. description="${3:description}",
  12. url='${4:url}'$0)