-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathsetup.py
48 lines (43 loc) · 1.36 KB
/
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
AUTHOR = 'Chris Dent'
AUTHOR_EMAIL = 'cdent@peermore.com'
NAME = 'tiddlywebplugins.tank'
DESCRIPTION = 'Experimenting with Tank'
VERSION = '0.1'
import os
from setuptools import setup, find_packages
setup(
namespace_packages = ['tiddlywebplugins'],
name = NAME,
version = VERSION,
description = DESCRIPTION,
long_description = open(os.path.join(os.path.dirname(__file__),
'README')).read(),
author = AUTHOR,
author_email = AUTHOR_EMAIL,
url = 'http://pypi.python.org/pypi/%s' % NAME,
platforms = 'Posix; MacOS X; Windows',
packages = find_packages(exclude=['test']),
install_requires = [
'tiddlyweb>=2.1.1',
'tiddlywebplugins.oauth',
'tiddlywebplugins.utils',
'tiddlywebplugins.templates',
'tiddlywebplugins.markdown',
'tiddlywebplugins.whoosher',
'tiddlywebplugins.logout',
'tiddlywebplugins.relativetime',
'tiddlywebplugins.status',
'tiddlywebplugins.atom',
'tiddlywebplugins.policyfilter',
'tiddlywebplugins.links>=1.1.0',
'tiddlywebplugins.csrf',
'tiddlywebplugins.jsondispatcher',
'tiddlywebplugins.twikified',
'tiddlywebplugins.extraclude',
'tiddlywebplugins.privateer',
'tiddlywebplugins.cors',
'markdown-checklist',
'httpexceptor'
],
zip_safe = False
)