-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
28 lines (25 loc) · 862 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
from setuptools import setup, find_packages
from tiddlywebwiki import __version__ as VERSION
setup(
name = 'tiddlywebwiki',
version = VERSION,
description = 'A TiddlyWeb plugin to provide a multi-user TiddlyWiki environment.',
author = 'FND',
author_email = 'FNDo@gmx.net',
platforms = 'Posix; MacOS X; Windows',
scripts = ['twinstance'],
packages = find_packages(exclude=['test']),
install_requires = [
'tiddlyweb>=1.2.43',
'tiddlywebplugins.instancer>=0.7.13',
'tiddlywebplugins.utils>=0.15',
'tiddlywebplugins.wikklytextrender>=0.7',
'tiddlywebplugins.status>=0.5',
'tiddlywebplugins.differ',
'tiddlywebplugins.atom',
'tiddlywebplugins.console>=0.2.3',
'html5lib',
'wikklytext'],
include_package_data = True,
zip_safe = False
)