mirror of
https://git.freebsd.org/ports.git
synced 2025-06-27 15:40:32 -04:00
- Take maintainership under python@'s wings - httplib2 is a RUN not BUILD dependency - Add TEST_DEPENDS and regression-test target - Limit to Python 2.x - Sort USE_PYTHON values - Add breadcrumb/notes to setup.py patch - Make pkg-descr a bit prettier
14 lines
550 B
Python
14 lines
550 B
Python
# This package installs its 'test' module in site-packages/. Patch it out
|
|
# so tests/ is excluded from installation
|
|
|
|
--- ./setup.py.orig 2014-03-15 23:48:44.604925965 +1100
|
|
+++ ./setup.py 2014-03-15 23:49:01.462781884 +1100
|
|
@@ -31,7 +31,7 @@
|
|
author="Joe Stump",
|
|
author_email="joe@simplegeo.com",
|
|
url="http://github.com/simplegeo/python-oauth2",
|
|
- packages = find_packages(),
|
|
+ packages = find_packages(exclude=['tests']),
|
|
install_requires = ['httplib2'],
|
|
license = "MIT License",
|
|
keywords="oauth",
|