0
|
1 from setuptools import setup, find_packages
|
|
2
|
|
3 try:
|
|
4 description = file('README.txt').read()
|
8
|
5 except IOError:
|
0
|
6 description = ''
|
|
7
|
|
8 version = "0.0"
|
|
9
|
|
10 setup(name='simpypi',
|
|
11 version=version,
|
|
12 description="Simple pypi package",
|
|
13 long_description=description,
|
|
14 classifiers=[], # Get strings from http://www.python.org/pypi?%3Aaction=list_classifiers
|
|
15 author='Jeff Hammel',
|
|
16 author_email='jhammel@mozilla.com',
|
|
17 url='http://k0s.org/mozilla/hg/simpypi',
|
26
|
18 license="MPL",
|
0
|
19 packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
|
|
20 include_package_data=True,
|
|
21 zip_safe=False,
|
|
22 install_requires=[
|
|
23 # -*- Extra requirements: -*-
|
8
|
24 'WebOb',
|
26
|
25 'FileServer'
|
0
|
26 ],
|
|
27 entry_points="""
|
|
28 # -*- Entry points: -*-
|
|
29 """,
|
|
30 )
|