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 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,