-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (23 loc) · 922 Bytes
/
setup.py
File metadata and controls
27 lines (23 loc) · 922 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
import os
from setuptools import setup, find_packages
VERSION = '0.10.0'
setup(
namespace_packages = ['tiddlywebplugins'],
name = 'tiddlywebplugins.wimporter',
version = VERSION,
description = 'A TiddlyWeb plugin for server side import of tiddlers.',
long_description=file(os.path.join(os.path.dirname(__file__), 'README')).read(),
author = 'Chris Dent',
url = 'http://pypi.python.org/pypi/tiddlywebplugins.wimporter',
packages = find_packages(exclude=['test']),
author_email = '[email protected]',
platforms = 'Posix; MacOS X; Windows',
install_requires = ['setuptools',
'tiddlyweb>=2.1.2',
'tiddlywebplugins.twimport>=0.9',
'httpexceptor',
'tiddlywebplugins.utils',
'tiddlywebplugins.templates'],
include_package_data = True,
zip_safe=False
)