Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
recursive-include ebaysdk *.py
recursive-include tests *.py
recursive-include samples *.py
include ebay.yaml
include Changes
include INSTALL
2 changes: 1 addition & 1 deletion ebaysdk/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
import platform
import logging

__version__ = '2.2.0'
__version__ = '2.2.1dev'
Version = __version__ # for backward compatibility

try:
Expand Down
15 changes: 4 additions & 11 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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="[email protected]",
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,
Expand Down