From 1fba8215d90b9dc8a2b9effa0c80ea1ad7d1e799 Mon Sep 17 00:00:00 2001 From: Michael Schuresko Date: Fri, 14 Sep 2018 09:12:08 -0700 Subject: [PATCH] Fix to add methods directory to installer --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 22dcf9b..81744f8 100755 --- a/setup.py +++ b/setup.py @@ -25,7 +25,7 @@ url = "https://github.com/explorigin/Rocket", packages = ['rocket'], license = "MIT License", - package_data = {'':['*.py', '*.txt']}, + package_data = {'':['*.py', '*.txt', 'methods/*.py']}, include_package_data = True, install_requires=['distribute'], long_description = """The Rocket web server is a server designed to handle the increased needs of modern web applications implemented in pure Python. It can serve WSGI applications and middleware currently with the ability to be extended to handle different types of networked request-response jobs. Rocket runs on cPython 2.5-3.x and Jython 2.5 (without the need to run through the 2to3 translation tool). Rocket is similar in purpose to Cherrypy's Wsgiserver but with added flexibility and concurrency.