-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Evan Borgstrom
committed
Jan 3, 2012
1 parent
16d2c79
commit 0b1965e
Showing
3 changed files
with
33 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
Original Author: Evan Borgstrom [fatbox] | ||
|
||
Contributors: | ||
- [akumira] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
OpenSRS-py Changelog | ||
-------------------- | ||
|
||
Version 0.1.1 | ||
Released: Tue Jan 3 11:35:54 EST 2012 | ||
- Repackaged for the cheeseshop | ||
|
||
|
||
Version 0.1 | ||
- Packaged by [akumira] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,8 +2,22 @@ | |
|
||
from setuptools import setup | ||
|
||
setup(name="OpenSRS", | ||
version='0.1', | ||
packages=['opensrs', ], | ||
install_requires=['httplib2', ], | ||
) | ||
setup( | ||
name="OpenSRS", | ||
packages=['opensrs', ], | ||
install_requires=['httplib2', ], | ||
version='0.1.1', | ||
description='Higher level Python interface to the OpenSRS XML API', | ||
long_description=open('README.md').read(), | ||
author='Evan Borgstrom', | ||
author_email='[email protected]', | ||
url='https://github.com/fatbox/OpenSRS-py', | ||
classifiers=[ | ||
'Development Status :: 4 - Beta', | ||
'Intended Audience :: Developers', | ||
'License :: OSI Approved :: BSD License', | ||
'Natural Language :: English', | ||
'Topic :: Software Development :: Libraries', | ||
'Topic :: Software Development :: Libraries :: Python Modules', | ||
], | ||
) |