Skip to content

Commit

Permalink
Stupid plugin packaging issues
Browse files Browse the repository at this point in the history
  • Loading branch information
Seth Fitzsimmons committed Oct 28, 2010
1 parent 82679b7 commit 732f2ea
Showing 1 changed file with 5 additions and 8 deletions.
13 changes: 5 additions & 8 deletions setup.py
Expand Up @@ -2,19 +2,18 @@

from setuptools import setup, find_packages

def refresh_plugin_cache():
from twisted.plugin import IPlugin, getPlugins
list(getPlugins(IPlugin))

setup(
name="oauth-proxy",
version="1.0.1",
version="1.0.3",
url="http://github.com/mojodna/oauth-proxy",
license="BSD License",
description="OAuth HTTP proxy",
long_description="An OAuth proxy server that signs requests w/ provided tokens and passes them on to their original destination.",
keywords="oauth proxy twisted",
packages=find_packages(),
packages=[
"oauth_proxy",
"twisted.plugins",
],
package_data={
"twisted": ["plugins/proxy.py"]
},
Expand All @@ -29,5 +28,3 @@ def refresh_plugin_cache():
"License :: OSI Approved :: BSD License",
],
)

refresh_plugin_cache()

0 comments on commit 732f2ea

Please sign in to comment.