-
Notifications
You must be signed in to change notification settings - Fork 36
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
3e55194
commit 83dcb10
Showing
1 changed file
with
3 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -76,17 +76,17 @@ def run (self): | |
setup(name='exaproxy', | ||
version=version, | ||
description='non-caching http/https proxy', | ||
long_description="ExaProxy was developed to be a transparent forward proxy. Thanks to its url rewriting features, compatible with SQUID rewriters, it can as well be used as powerful reverse proxy where complex URL rewriting are required.", | ||
long_description="ExaProxy is a forward (or reverse) non-caching proxy. It can be used transparently and/or to rewrite HTTP requests.", | ||
author='Thomas Mangin, David Farrar', | ||
author_email='[email protected], [email protected]', | ||
url='http://code.google.com/p/exaproxy/', | ||
url='https://github.com/Exa-Networks/exaproxy', | ||
license="BSD", | ||
platforms=[get_platform(),], | ||
package_dir = {'': 'lib'}, | ||
packages=packages('lib'), | ||
scripts=['scripts/exaproxy',], | ||
# entry_points = {'console_scripts': ['exaproxy = exaproxy.application:main',]}, | ||
download_url='http://exaproxy.googlecode.com/files/exaproxy-%s.tgz' % version, | ||
download_url='https://codeload.github.com/Exa-Networks/exaproxy/tar.gz/%s' % version, | ||
data_files=files(), | ||
classifiers=[ | ||
'Development Status :: 4 - Beta', | ||
|