-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (22 loc) · 830 Bytes
/
setup.py
File metadata and controls
27 lines (22 loc) · 830 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
AUTHOR = 'Ben Gillies'
AUTHOR_EMAIL = 'bengillies@gmail.com'
NAME = 'tiddlywebplugins.form'
DESCRIPTION = 'Adds POST and binary file upload (via HTML) support to TiddlyWeb'
VERSION = '0.12.1'
import os
from setuptools import setup, find_packages
# You should carefully review the below (install_requires especially).
setup(
namespace_packages = ['tiddlywebplugins'],
name = NAME,
version = VERSION,
description = DESCRIPTION,
long_description = open(os.path.join(os.path.dirname(__file__), 'README')).read(),
author = AUTHOR,
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', 'httpexceptor', 'tiddlyweb>=2.1.5'],
zip_safe = False
)