[go: up one dir, main page]

File: setup.py

package info (click to toggle)
servefile 0.4.2-1
  • links: PTS
  • area: main
  • in suites: wheezy
  • size: 104 kB
  • sloc: python: 847; makefile: 2
file content (17 lines) | stat: -rwxr-xr-x 742 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/usr/bin/python

from distutils.core import setup

setup(
	name='servefile',
	description='Serve files from shell via a small HTTP server',
	long_description='Serve files from shell via a small HTTP server. The server redirects all HTTP requests to the file, so only IP and port must be given to another user to access the file. Its main purpose is to quickly send a file to users in your local network, independent of their current setup (OS/software). Beneath that it also supports uploads, SSL, HTTP basic auth and directory listings.',
	platforms='posix',
	version='0.4.2',
	license='GPLv3 or later',
	url='http://seba-geek.de/stuff/servefile/',
	author='Sebastian Lohff',
	author_email='seba@someserver.de',
	scripts=['servefile'],
)