-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (20 loc) · 735 Bytes
/
Copy pathsetup.py
File metadata and controls
23 lines (20 loc) · 735 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
"""
Setup.py for tiddlywebplugins.utils
"""
import os
from setuptools import setup, find_packages
VERSION = '1.10'
setup(
namespace_packages = ['tiddlywebplugins'],
name = 'tiddlywebplugins.utils',
long_description=open(os.path.join(os.path.dirname(__file__), 'README')).read(),
version = VERSION,
description = 'Tools and methods for managing TiddlyWeb plugins',
author = 'Chris Dent',
author_email = 'cdent@peermore.com',
url = 'http://pypi.python.org/pypi/tiddlywebplugins.utils',
packages = find_packages(exclude=['test']),
platforms = 'Posix; MacOS X; Windows',
install_requires = ['tiddlyweb>=1.4.1'],
zip_safe = False,
)