From 4c7dcf7a0ab7d2fcb5064a1d56ec87afc5132a5a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mart=C3=ADn=20Gait=C3=A1n?= Date: Wed, 1 Oct 2025 15:46:25 -0300 Subject: [PATCH 1/2] do not include tests nor samples folder --- MANIFEST.in | 2 -- 1 file changed, 2 deletions(-) diff --git a/MANIFEST.in b/MANIFEST.in index cd79363..b32af38 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,6 +1,4 @@ recursive-include ebaysdk *.py -recursive-include tests *.py -recursive-include samples *.py include ebay.yaml include Changes include INSTALL From a7d977a1ff64e4422b023fc308deea88ff8a588d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mart=C3=ADn=20Gait=C3=A1n?= Date: Wed, 1 Oct 2025 15:55:40 -0300 Subject: [PATCH 2/2] do not include test nor sample folders in the distributable package. Simplify setup --- ebaysdk/__init__.py | 2 +- setup.py | 15 ++++----------- 2 files changed, 5 insertions(+), 12 deletions(-) diff --git a/ebaysdk/__init__.py b/ebaysdk/__init__.py index 5630928..a6d3ef4 100644 --- a/ebaysdk/__init__.py +++ b/ebaysdk/__init__.py @@ -9,7 +9,7 @@ import platform import logging -__version__ = '2.2.0' +__version__ = '2.2.1dev' Version = __version__ # for backward compatibility try: diff --git a/setup.py b/setup.py index fc03578..b52b8d3 100644 --- a/setup.py +++ b/setup.py @@ -14,13 +14,7 @@ # See the License for the specific language governing permissions and # limitations under the License. -from setuptools import setup, find_packages -import re -import os - -PKG = 'ebaysdk' - -version = __import__(PKG).get_version() +from setuptools import setup long_desc = """This SDK is a programatic inteface into the eBay APIs. It simplifies development and cuts development time by standerizing @@ -35,15 +29,14 @@ def requirements_file_to_list(fn="requirements.txt"): return [x.rstrip() for x in list(f) if x and not x.startswith('#')] setup( - name=PKG, - version=version, + name="ebaysdk", + version="2.2.1dev", description="eBay SDK for Python", author="Tim Keefer", author_email="tkeefer@gmail.com", url="https://github.com/timotheus/ebaysdk-python", license="COMMON DEVELOPMENT AND DISTRIBUTION LICENSE (CDDL) Version 1.0", - packages=find_packages(), - provides=[PKG], + packages=["ebaysdk"], install_requires=['lxml', 'requests'], #requirements_file_to_list(), test_suite='tests', long_description=long_desc,