summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--[-rwxr-xr-x]setup.py11
1 files changed, 0 insertions, 11 deletions
diff --git a/setup.py b/setup.py
index 8b3e3874..a3f4d987 100755..100644
--- a/setup.py
+++ b/setup.py
@@ -1,6 +1,3 @@
-#! /usr/bin/env python
-"""CherryPy package setuptools installer."""
-
import sys
import io
@@ -62,12 +59,6 @@ packages = [
'cherrypy.scaffold',
]
-package_data = {
- 'cherrypy': ['favicon.ico'],
- 'cherrypy.scaffold': ['static/made_with_cherrypy_small.png'],
- 'cherrypy.tutorial': ['tutorial.conf', 'favicon.ico', 'custom_error.html'],
-}
-
install_requires = [
'six',
'cheroot>=5.2.0',
@@ -125,7 +116,6 @@ setup_params = dict(
license=cp_license,
packages=packages,
entry_points={'console_scripts': ['cherryd = cherrypy.__main__:run']},
- package_data=package_data,
include_package_data=True,
install_requires=install_requires,
extras_require=extras_require,
@@ -137,7 +127,6 @@ setup_params = dict(
def main():
- """Package installation entry point."""
setuptools.setup(**setup_params)