aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFilipp Lepalaan <f@230.to>2013-02-03 23:10:03 +0200
committerFilipp Lepalaan <f@230.to>2013-02-03 23:10:03 +0200
commitde4dd51c635200c180c45b9a6dbcce8fc2ea6b20 (patch)
tree480f11dac30274eef49adb706dfa156aaa56f3f9
parenta595688db680ba406ff744accf9284f99c70b2f1 (diff)
downloadpy-gsxws-de4dd51c635200c180c45b9a6dbcce8fc2ea6b20.tar.gz
py-gsxws-de4dd51c635200c180c45b9a6dbcce8fc2ea6b20.tar.bz2
py-gsxws-de4dd51c635200c180c45b9a6dbcce8fc2ea6b20.zip
Renamed to GSXWS
-rw-r--r--README.md6
-rwxr-xr-xgsxws.py (renamed from gsx.py)0
-rw-r--r--setup.py28
3 files changed, 17 insertions, 17 deletions
diff --git a/README.md b/README.md
index e6ab990..ea6ebf7 100644
--- a/README.md
+++ b/README.md
@@ -9,9 +9,9 @@ Installation:
It goes a little something like this:
# check warranty status
- from gsx import gsx
- gsx.connect(apple_id, password, sold_to)
- mac = gsx.Product('70033CDFA4S')
+ import gsxws
+ gsxws.connect(apple_id, password, sold_to)
+ mac = gsxws.Product('70033CDFA4S')
mac.get_warranty()
# get available parts for this machine
diff --git a/gsx.py b/gsxws.py
index da7d6ea..da7d6ea 100755
--- a/gsx.py
+++ b/gsxws.py
diff --git a/setup.py b/setup.py
index a26c537..6358bfb 100644
--- a/setup.py
+++ b/setup.py
@@ -2,22 +2,22 @@ from setuptools import setup, find_packages
import sys, os
setup(
- name='pygsx',
- version='0.2',
+ name="gsxws",
+ version="0.2",
description="Apple GSX integration.",
- long_description='',
+ install_requires = ['suds'],
classifiers=[
- 'Environment :: Web Environment',
- 'Intended Audience :: Developers',
- 'License :: OSI Approved :: The BSD 2-Clause License',
- 'Operating System :: OS Independent',
- 'Programming Language :: Python',
- 'Topic :: Internet :: WWW/HTTP'
+ "Environment :: Web Environment",
+ "Intended Audience :: Developers",
+ "License :: OSI Approved :: The BSD 2-Clause License",
+ "Operating System :: OS Independent",
+ "Programming Language :: Python",
+ "Topic :: Internet :: WWW/HTTP"
],
- keywords='gsx, python',
- author='Filipp Lepalaan',
- author_email='filipp@mcare.fi',
- url='https://github.com/filipp/py-gsx',
- license='BSD',
+ keywords="gsx, python",
+ author="Filipp Lepalaan",
+ author_email="filipp@mcare.fi",
+ url="https://github.com/filipp/py-gsx",
+ license="BSD",
packages = find_packages(),
)