-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (24 loc) · 798 Bytes
/
setup.py
File metadata and controls
27 lines (24 loc) · 798 Bytes
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
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 = '[email protected]',
platforms = 'Posix; MacOS X; Windows',
scripts = ['twinstance'],
packages = find_packages(exclude=['test']),
install_requires = [
'tiddlyweb>=1.4.11',
'tiddlywebplugins.imaker',
'tiddlywebplugins.utils>=0.15',
'tiddlywebplugins.status>=0.5',
'tiddlywebplugins.differ',
'tiddlywebplugins.atom',
'tiddlywebplugins.console>=0.3.0',
'tiddlywebplugins.cherrypy',
],
include_package_data = True,
zip_safe = False
)