5
|
1 import os
|
0
|
2 from setuptools import setup, find_packages
|
|
3
|
5
|
4 try:
|
|
5 filename = os.path.join(os.path.dirname(__file__), 'README.txt')
|
|
6 description = file(filename).read()
|
|
7 except:
|
|
8 description = ""
|
|
9
|
|
10 version = "0.1.1"
|
0
|
11
|
|
12 setup(name='wordstream',
|
|
13 version=version,
|
4
|
14 description="word streamer; conversational and dissociatively play with text with a command line and web interface",
|
5
|
15 long_description=description,
|
0
|
16 classifiers=[], # Get strings from http://www.python.org/pypi?%3Aaction=list_classifiers
|
|
17 author='Jeff Hammel',
|
|
18 author_email='k0scist@gmail.com',
|
4
|
19 url='http://k0s.org/hg/wordstream',
|
|
20 license="GPL",
|
0
|
21 packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
|
|
22 include_package_data=True,
|
|
23 zip_safe=False,
|
|
24 install_requires=[
|
|
25 # -*- Extra requirements: -*-
|
|
26 'WebOb',
|
|
27 'Paste',
|
|
28 'PasteScript',
|
|
29 'genshi'
|
|
30 ],
|
|
31 entry_points="""
|
|
32 # -*- Entry points: -*-
|
|
33 [paste.app_factory]
|
|
34 wordstream = wordstream.factory:factory
|
|
35
|
|
36 [console_scripts]
|
|
37 wordstream = wordstream.main:main
|
3
|
38 dissociate = wordstream.dissociate:main
|
0
|
39 """,
|
|
40 )
|
|
41
|