Ticket #18 (closed defect: fixed)

Opened 6 years ago

Last modified 6 years ago

test and example files installed in site-packages by default

Reported by: guest Owned by:
Priority: trivial Milestone:
Component: core Version: 0.4.0
Keywords: Cc:

Description

a tiny patch, but made my Debian package a little bit cleaner:

--- setup.py_orig	2007-10-29 13:56:49.000000000 +0100
+++ setup.py	2007-10-29 22:12:30.000000000 +0100
@@ -26,7 +26,7 @@
       install_requires = [
           "SQLAlchemy >= 0.3.9"
       ],
-      packages=find_packages(exclude=['ez_setup']),
+      packages=find_packages(exclude=['ez_setup', 'tests', 'examples']),
       exclude_package_data = { '': ['release.howto'] },
       classifiers=[
           "Development Status :: 4 - Beta",

Change History

Changed 6 years ago by ged

  • status changed from new to closed
  • resolution set to fixed

Thanks. Applied. Btw: congrats for the quick reaction time to the release.

Note: See TracTickets for help on using tickets.