-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
29 lines (25 loc) · 917 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
"""
Setup file for packaging TiddlyWeb.
"""
import os
from setuptools import setup, find_packages
from tiddlyweb import __version__ as VERSION
setup(name = 'tiddlyweb',
version = VERSION,
description = 'An optionally headless, extensible RESTful datastore for tiddlers: bits of stuff.',
long_description=file(os.path.join(os.path.dirname(__file__), 'README')).read(),
author = 'Chris Dent',
author_email = '[email protected]',
url = 'http://pypi.python.org/pypi/tiddlyweb',
packages = find_packages(exclude=['test', 'test.*', 'profile']),
scripts = ['twanager',],
platforms = 'Posix; MacOS X; Windows',
install_requires = ['setuptools',
'selector',
'simplejson',
'html5lib',
'mimeparse',
'cherrypy'],
include_package_data = True,
zip_safe=False,
)