Changes between Version 22 and Version 23 of DosAndDontsForApplicationWriters


Ignore:
Timestamp:
Sep 24, 2013, 5:06:42 AM (11 years ago)
Author:
anonymous
Comment:

distutils is no longer recomended, and not a drop-in replacement for setuptools

Legend:

Unmodified
Added
Removed
Modified
  • DosAndDontsForApplicationWriters

    v22 v23  
    108108 * A template for an application {{{setup.py}}}:
    109109   {{{
    110 try:
    111     from setuptools import setup
    112 except ImportError:
    113     from distutils.core import setup
     110
     111
     112from setuptools import setup
     113
    114114setup(name = "mnemosyne",
    115115      author = "Sune Kirkeby",
Back to Top