-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
43 lines (38 loc) · 1.26 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
AUTHOR = 'Chris Dent'
AUTHOR_EMAIL = '[email protected]'
NAME = 'tiddlywebplugins.hoster'
DESCRIPTION = 'A hoster for TiddlyWikis'
import mangler
import os
from setuptools import setup, find_packages
# update in __init__ too please
VERSION = '0.9.51'
setup(
namespace_packages = ['tiddlywebplugins'],
name = NAME,
version = VERSION,
description = DESCRIPTION,
long_description=file(
os.path.join(os.path.dirname(__file__), 'README')).read(),
author = AUTHOR,
scripts = ['betsy'],
url = 'http://pypi.python.org/pypi/%s' % NAME,
packages = find_packages(exclude='test'),
author_email = AUTHOR_EMAIL,
platforms = 'Posix; MacOS X; Windows',
install_requires = ['setuptools',
'tiddlyweb>=1.4.0',
'tiddlywebplugins.utils',
'tiddlywebplugins.templates>=0.8',
'tiddlywebwiki',
'tiddlywebplugins.wimporter>=0.8',
'tiddlywebplugins.register',
'tiddlywebplugins.imaker',
'tiddlywebplugins.openid2',
'tiddlywebplugins.logout',
'tiddlywebplugins.form',
'httpexceptor',
],
include_package_data = True,
zip_safe = False,
)