Mercurial > python-cmd2
comparison setup.py @ 111:c1e5df33721f
struggling to get data files into setup.py
author | catherine@dellzilla |
---|---|
date | Fri, 24 Oct 2008 17:47:56 -0400 |
parents | 78c4db4c2045 |
children | e3b8eaadea56 |
comparison
equal
deleted
inserted
replaced
110:234fb764becd | 111:c1e5df33721f |
---|---|
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 packages=["cmd2",], | 6 packages=["cmd2",], |
7 package_dir={'cmd2': 'cmd2'}, | |
8 package_data={'cmd2': ['example/*.*']}, | |
9 include_package_data=True, | |
7 version="0.4", | 10 version="0.4", |
8 #py_modules = ['cmd2','flagReader','bootstrap'], | |
9 | 11 |
10 # metadata for upload to PyPI | 12 # metadata for upload to PyPI |
11 author = 'Catherine Devlin', | 13 author = 'Catherine Devlin', |
12 author_email = 'catherine.devlin@gmail.com', | 14 author_email = 'catherine.devlin@gmail.com', |
13 description = "Extra features for standard library's cmd module", | 15 description = "Extra features for standard library's cmd module", |
14 license = 'MIT', | 16 license = 'MIT', |
15 keywords = 'command prompt console cmd', | 17 keywords = 'command prompt console cmd', |
16 url = 'http://www.assembla.com/wiki/show/python-cmd2', | 18 url = 'http://www.assembla.com/wiki/show/python-cmd2', |
17 include_package_data=True, | |
18 | 19 |
19 long_description = """Enhancements for standard library's cmd module. | 20 long_description = """Enhancements for standard library's cmd module. |
20 | 21 |
21 Drop-in replacement adds several features for command-prompt tools: | 22 Drop-in replacement adds several features for command-prompt tools: |
22 | 23 |