mirror of
https://git.deluge-torrent.org/deluge
synced 2025-04-20 03:24:54 +00:00
More clean-up of setup.py
This commit is contained in:
parent
847f2c2ebd
commit
def1127c78
1 changed files with 5 additions and 4 deletions
9
setup.py
9
setup.py
|
@ -35,7 +35,6 @@ from distutils import cmd, sysconfig
|
|||
from distutils.command.build import build as _build
|
||||
from distutils.command.build_ext import build_ext as _build_ext
|
||||
from distutils.command.clean import clean as _clean
|
||||
from setuptools.command.install import install as _install
|
||||
try:
|
||||
from sphinx.setup_command import BuildDoc
|
||||
except ImportError:
|
||||
|
@ -448,8 +447,6 @@ setup(
|
|||
"data/pixmaps/*.svg",
|
||||
"data/pixmaps/*.ico",
|
||||
"data/pixmaps/flags/*.png",
|
||||
"data/revision",
|
||||
"data/GeoIP.dat",
|
||||
"plugins/*.egg",
|
||||
"i18n/*.pot",
|
||||
"i18n/*/LC_MESSAGES/*.mo",
|
||||
|
@ -461,7 +458,11 @@ setup(
|
|||
"ui/web/images/*.png",
|
||||
"ui/web/js/*.js",
|
||||
"ui/web/render/*.html",
|
||||
"ui/web/themes/*/*/*/*"
|
||||
"ui/web/themes/css/*.css",
|
||||
"ui/web/themes/*/*.gif",
|
||||
"ui/web/themes/*/*.png",
|
||||
"ui/web/themes/*/*/*.png",
|
||||
"ui/web/themes/*/*/*.gif"
|
||||
]},
|
||||
packages = find_packages(exclude=["plugins", "docs", "tests"]),
|
||||
entry_points = """
|
||||
|
|
Loading…
Add table
Reference in a new issue