Mercurial > hg > pyloader
annotate setup.py @ 12:d50d5237e82d
rename test file
author | Jeff Hammel <jhammel@mozilla.com> |
---|---|
date | Fri, 27 May 2011 07:19:17 -0700 |
parents | 5ce55f6c8964 |
children | b57de7c38a74 |
rev | line source |
---|---|
0 | 1 import os |
2 from setuptools import setup, find_packages | |
3 | |
4 try: | |
5 here = os.path.dirname(os.path.abspath(__file__)) | |
6 description = file(os.path.join(here, 'README.txt')).read() | |
7 except IOError: | |
8 description = '' | |
9 | |
2
6cb7696edc4d
add some more stuff for string loady type things and rearrange structure
Jeff Hammel <jhammel@mozilla.com>
parents:
1
diff
changeset
|
10 version = "0.1.2" |
0 | 11 dependencies = [] |
12 | |
13 setup(name='pyloader', | |
14 version=version, | |
15 description="Load python attributes from a string", | |
16 long_description=description, | |
17 classifiers=[], # Get strings from http://www.python.org/pypi?%3Aaction=list_classifiers | |
18 author='Jeff Hammel', | |
19 author_email='jhammel@mozilla.com', | |
20 url='http://k0s.org/', | |
21 license='MPL', | |
22 packages=find_packages(exclude=['ez_setup', 'examples', 'tests']), | |
23 include_package_data=True, | |
24 zip_safe=False, | |
25 install_requires=dependencies, | |
26 entry_points=""" | |
27 # -*- Entry points: -*- | |
4
5ce55f6c8964
invokation works in the barest sense
Jeff Hammel <jhammel@mozilla.com>
parents:
2
diff
changeset
|
28 [console_scripts] |
5ce55f6c8964
invokation works in the barest sense
Jeff Hammel <jhammel@mozilla.com>
parents:
2
diff
changeset
|
29 pyloader = pyloader.invoke:main |
0 | 30 """, |
31 ) | |
32 | |
33 |