Mercurial > hg > MakeItSo
comparison setup.py @ 179:5bd1c50c6f61
works weirdly but kinda works
| author | Jeff Hammel <k0scist@gmail.com> |
|---|---|
| date | Thu, 13 Mar 2014 17:30:27 -0700 |
| parents | aed8c4af5f26 |
| children | 9b78f52afe4e |
comparison
equal
deleted
inserted
replaced
| 178:d6ef91d49609 | 179:5bd1c50c6f61 |
|---|---|
| 1 import os | 1 import os |
| 2 from setuptools import setup, find_packages | 2 from setuptools import setup |
| 3 | 3 |
| 4 try: | 4 try: |
| 5 here = os.path.dirname(os.path.abspath(__file__)) | 5 here = os.path.dirname(os.path.abspath(__file__)) |
| 6 description = file(os.path.join(here, 'README.txt')).read() | 6 description = file(os.path.join(here, 'README.txt')).read() |
| 7 except IOError: | 7 except IOError: |
| 37 | 37 |
| 38 [makeitso.templates] | 38 [makeitso.templates] |
| 39 python-package = makeitso.python:PythonPackageTemplate | 39 python-package = makeitso.python:PythonPackageTemplate |
| 40 python-module = makeitso.python:PythonModuleTemplate | 40 python-module = makeitso.python:PythonModuleTemplate |
| 41 python-script = makeitso.python:PythonScriptTemplate | 41 python-script = makeitso.python:PythonScriptTemplate |
| 42 setup.py = makeitso.python:SetupPy | |
| 42 """, | 43 """, |
| 43 ) | 44 ) |
