comparison setup.py @ 0:3497a30190d2

initial commit of fetch, WIP
author Jeff Hammel <jhammel@mozilla.com>
date Sun, 18 Sep 2011 10:33:04 -0700
parents
children 44cbfaefa85c
comparison
equal deleted inserted replaced
-1:000000000000 0:3497a30190d2
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
10 version = "0.0"
11
12 dependencies = ['MakeItSo', 'webob']
13
14 setup(name='fetch',
15 version=version,
16 description="fetch stuff from the interwebs",
17 long_description=description,
18 classifiers=[], # Get strings from http://www.python.org/pypi?%3Aaction=list_classifiers
19 author='Jeff Hammel',
20 author_email='jhammel@mozilla.com',
21 url='http://k0s.org/mozilla/fetch',
22 license='MPL',
23 packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
24 include_package_data=True,
25 zip_safe=False,
26 install_requires=dependencies,
27 entry_points="""
28 # -*- Entry points: -*-
29
30 [console_scripts]
31 fetch = fetch.main:main
32 """,
33 )
34
35