From e706e014694540bdebb440f0a6f7689ba809df16 Mon Sep 17 00:00:00 2001 From: boguta_m Date: Wed, 24 Sep 2014 13:24:24 +0200 Subject: [PATCH] moving forward to 1.1.1 (renamed Shiba module to shiba), fixed dependencies issues --- README.rst | 4 ++-- Tests/Assets/nosetests.cfg | 4 ---- setup.py | 11 ++++++----- {Shiba => shiba}/__init__.py | 0 {Shiba => shiba}/accountingmanagement.py | 0 {Shiba => shiba}/inventorymanagement.py | 0 {Shiba => shiba}/marketplacemanagement.py | 0 {Shiba => shiba}/salesmanagement.py | 0 {Shiba => shiba}/shibaconnection.py | 0 {Shiba => shiba}/shibaexceptions.py | 0 {Shiba => shiba}/shibaresponseobject.py | 0 {Shiba => shiba}/shibatools.py | 0 {Tests => tests}/Assets/genericimportfile.xml | 0 {Tests => tests}/__init__.py | 0 {Tests => tests}/test_accountingmanagement.py | 0 {Tests => tests}/test_inventorymanagement.py | 0 {Tests => tests}/test_marketplacemanagement.py | 0 {Tests => tests}/test_salesmanagement.py | 0 {Tests => tests}/test_shibatools.py | 0 19 files changed, 8 insertions(+), 11 deletions(-) delete mode 100644 Tests/Assets/nosetests.cfg rename {Shiba => shiba}/__init__.py (100%) rename {Shiba => shiba}/accountingmanagement.py (100%) rename {Shiba => shiba}/inventorymanagement.py (100%) rename {Shiba => shiba}/marketplacemanagement.py (100%) rename {Shiba => shiba}/salesmanagement.py (100%) rename {Shiba => shiba}/shibaconnection.py (100%) rename {Shiba => shiba}/shibaexceptions.py (100%) rename {Shiba => shiba}/shibaresponseobject.py (100%) rename {Shiba => shiba}/shibatools.py (100%) rename {Tests => tests}/Assets/genericimportfile.xml (100%) rename {Tests => tests}/__init__.py (100%) rename {Tests => tests}/test_accountingmanagement.py (100%) rename {Tests => tests}/test_inventorymanagement.py (100%) rename {Tests => tests}/test_marketplacemanagement.py (100%) rename {Tests => tests}/test_salesmanagement.py (100%) rename {Tests => tests}/test_shibatools.py (100%) diff --git a/README.rst b/README.rst index c8f1128..47b430d 100644 --- a/README.rst +++ b/README.rst @@ -1,11 +1,11 @@ Shiba ===== -**shiba 1.1** +**shiba 1.1.1** Released: **11-Sep-2014** -Last release: **22-Sep-2014** +Last release: **24-Sep-2014** Introduction -------------- diff --git a/Tests/Assets/nosetests.cfg b/Tests/Assets/nosetests.cfg deleted file mode 100644 index e32609a..0000000 --- a/Tests/Assets/nosetests.cfg +++ /dev/null @@ -1,4 +0,0 @@ -[NoseConfig] -login = nunux17 -pwd = 338c1b85e36c4a3285e7e7ceba86edaa -domain = https://ws.sandbox.priceminister.com diff --git a/setup.py b/setup.py index c3ce1b1..584ed91 100644 --- a/setup.py +++ b/setup.py @@ -3,14 +3,15 @@ # # setup.py setup script -from distutils.core import setup +from setuptools import setup setup(name= "Shiba", - packages= ["Shiba"], - version = "1.1", + packages= ["shiba"], + version = "1.1.1", description= "A Python API for PriceMinister WebServices", author= "Maxime Boguta", author_email= "maxime.boguta@epitech.eu", url= "https://github.com/ShibaAPI/shiba", - download_url= "https://github.com/ShibaAPI/shiba/tarball/1.0", - keywords= ["api", "priceminister", "python", "webservices"]) + download_url= "https://github.com/ShibaAPI/shiba/tarball/1.1.1", + keywords= ["api", "priceminister", "python", "webservices"], + install_requires=["requests", "xmltodict", "lxml"],) diff --git a/Shiba/__init__.py b/shiba/__init__.py similarity index 100% rename from Shiba/__init__.py rename to shiba/__init__.py diff --git a/Shiba/accountingmanagement.py b/shiba/accountingmanagement.py similarity index 100% rename from Shiba/accountingmanagement.py rename to shiba/accountingmanagement.py diff --git a/Shiba/inventorymanagement.py b/shiba/inventorymanagement.py similarity index 100% rename from Shiba/inventorymanagement.py rename to shiba/inventorymanagement.py diff --git a/Shiba/marketplacemanagement.py b/shiba/marketplacemanagement.py similarity index 100% rename from Shiba/marketplacemanagement.py rename to shiba/marketplacemanagement.py diff --git a/Shiba/salesmanagement.py b/shiba/salesmanagement.py similarity index 100% rename from Shiba/salesmanagement.py rename to shiba/salesmanagement.py diff --git a/Shiba/shibaconnection.py b/shiba/shibaconnection.py similarity index 100% rename from Shiba/shibaconnection.py rename to shiba/shibaconnection.py diff --git a/Shiba/shibaexceptions.py b/shiba/shibaexceptions.py similarity index 100% rename from Shiba/shibaexceptions.py rename to shiba/shibaexceptions.py diff --git a/Shiba/shibaresponseobject.py b/shiba/shibaresponseobject.py similarity index 100% rename from Shiba/shibaresponseobject.py rename to shiba/shibaresponseobject.py diff --git a/Shiba/shibatools.py b/shiba/shibatools.py similarity index 100% rename from Shiba/shibatools.py rename to shiba/shibatools.py diff --git a/Tests/Assets/genericimportfile.xml b/tests/Assets/genericimportfile.xml similarity index 100% rename from Tests/Assets/genericimportfile.xml rename to tests/Assets/genericimportfile.xml diff --git a/Tests/__init__.py b/tests/__init__.py similarity index 100% rename from Tests/__init__.py rename to tests/__init__.py diff --git a/Tests/test_accountingmanagement.py b/tests/test_accountingmanagement.py similarity index 100% rename from Tests/test_accountingmanagement.py rename to tests/test_accountingmanagement.py diff --git a/Tests/test_inventorymanagement.py b/tests/test_inventorymanagement.py similarity index 100% rename from Tests/test_inventorymanagement.py rename to tests/test_inventorymanagement.py diff --git a/Tests/test_marketplacemanagement.py b/tests/test_marketplacemanagement.py similarity index 100% rename from Tests/test_marketplacemanagement.py rename to tests/test_marketplacemanagement.py diff --git a/Tests/test_salesmanagement.py b/tests/test_salesmanagement.py similarity index 100% rename from Tests/test_salesmanagement.py rename to tests/test_salesmanagement.py diff --git a/Tests/test_shibatools.py b/tests/test_shibatools.py similarity index 100% rename from Tests/test_shibatools.py rename to tests/test_shibatools.py