forked from tiddlyweb/tiddlyweb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
24 lines (20 loc) · 844 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
"""
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 = 'cdent@peermore.com',
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', 'cherrypy'],
include_package_data = True,
zip_safe=False,
)