Mercurial > python-cmd2
comparison setup.py @ 113:7d215852f9a6
still unpackaging
author | catherine@Elli.myhome.westell.com |
---|---|
date | Sat, 25 Oct 2008 19:34:16 -0400 |
parents | e3b8eaadea56 |
children | fad4dde06be8 |
comparison
equal
deleted
inserted
replaced
112:e3b8eaadea56 | 113:7d215852f9a6 |
---|---|
2 from setuptools import setup, find_packages | 2 from setuptools import setup, find_packages |
3 | 3 |
4 setup( | 4 setup( |
5 name="cmd2", | 5 name="cmd2", |
6 version="0.4", | 6 version="0.4", |
7 packages=["cmd2",], | 7 py_modules=["cmd2",], |
8 package_dir={'cmd2': 'cmd2'}, | |
9 package_data={'cmd2': ['example/*.txt', 'example/*.py']}, | |
10 | 8 |
11 # metadata for upload to PyPI | 9 # metadata for upload to PyPI |
12 author = 'Catherine Devlin', | 10 author = 'Catherine Devlin', |
13 author_email = 'catherine.devlin@gmail.com', | 11 author_email = 'catherine.devlin@gmail.com', |
14 description = "Extra features for standard library's cmd module", | 12 description = "Extra features for standard library's cmd module", |