-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
34 lines (31 loc) · 1.31 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
from setuptools import setup, find_packages
import poster
version = ".".join(str(x) for x in poster.version)
setup(name='poster',
version=version,
description="Streaming HTTP uploads and multipart/form-data encoding",
long_description="""\
The modules in the Python standard library don't provide a way to upload large
files via HTTP without having to load the entire file into memory first.
poster provides support for both streaming POST requests as well as
multipart/form-data encoding of string or file parameters""",
classifiers=[
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Software Development :: Libraries :: Python Modules",
],
keywords='python http post multipart/form-data file upload',
author='Evan Darwin',
author_email='[email protected]',
url='https://github.com/EvanDarwin/poster3',
license='MIT',
packages=find_packages(exclude=['tests', 'tests.*']),
include_package_data=True,
zip_safe=True,
extras_require={'poster': ["buildutils", "sphinx"]},
tests_require=["nose", "webob", "paste"],
test_suite='nose.collector',
)