Skip to content
This repository was archived by the owner on May 8, 2018. It is now read-only.

Commit ce20cbb

Browse files
committed
Changed LICENSE
Cleaned up setup
1 parent 0390d9c commit ce20cbb

4 files changed

Lines changed: 52 additions & 27 deletions

File tree

LICENSE

Lines changed: 0 additions & 10 deletions
This file was deleted.

LICENSE.txt

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
This is free and unencumbered software released into the public domain.
2+
3+
Anyone is free to copy, modify, publish, use, compile, sell, or
4+
distribute this software, either in source code form or as a compiled
5+
binary, for any purpose, commercial or non-commercial, and by any
6+
means.
7+
8+
In jurisdictions that recognize copyright laws, the author or authors
9+
of this software dedicate any and all copyright interest in the
10+
software to the public domain. We make this dedication for the benefit
11+
of the public at large and to the detriment of our heirs and
12+
successors. We intend this dedication to be an overt act of
13+
relinquishment in perpetuity of all present and future rights to this
14+
software under copyright law.
15+
16+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
19+
IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR
20+
OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
21+
ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
22+
OTHER DEALINGS IN THE SOFTWARE.
23+
24+
For more information, please refer to <http://unlicense.org/>

MANIFEST.in

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
include LICENSE.txt
2+
recursive-exclude * *.pyc

setup.py

Lines changed: 26 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,37 @@
1-
#!/usr/bin/env python
2-
from setuptools import setup
1+
# -*- coding: utf-8 -*-
2+
from setuptools import setup, find_packages
33

44
version = '0.5'
55

6+
REQUIREMENTS = ['requests']
7+
8+
CLASSIFIERS = [
9+
'Development Status :: 2 - Pre-Alpha',
10+
'Environment :: Web Environment',
11+
'Intended Audience :: Developers',
12+
'License :: OSI Approved :: BSD License',
13+
'Operating System :: OS Independent',
14+
'Programming Language :: Python',
15+
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
16+
'Topic :: Software Development',
17+
'Topic :: Software Development :: Libraries :: Application Frameworks',
18+
"Programming Language :: Python :: 2",
19+
"Programming Language :: Python :: 2.6",
20+
"Programming Language :: Python :: 2.7",
21+
]
22+
623
setup(
724
name="python-amazon-mws",
825
version=version,
926
description="A python interface for Amazon MWS",
1027
author="Paulo Alvarado",
1128
author_email="commonzenpython@gmail.com",
1229
url="http://github.com/czpython/python-amazon-mws",
13-
packages=['mws'],
14-
download_url = 'https://github.com/czpython/python-amazon-mws/tarball/0.3',
15-
classifiers = [
16-
"Development Status :: 4 - Beta",
17-
"Intended Audience :: Developers",
18-
"Operating System :: OS Independent",
19-
"Topic :: Internet",
20-
"Natural Language :: English",
21-
"Programming Language :: Python :: 2",
22-
"Programming Language :: Python :: 2.5",
23-
"Programming Language :: Python :: 2.6",
24-
"Programming Language :: Python :: 2.7"],
25-
install_requires=[
26-
'requests',
27-
],
30+
packages=find_packages(),
31+
platforms=['OS Independent'],
32+
license='LICENSE.txt',
33+
install_requires=REQUIREMENTS,
34+
classifiers=CLASSIFIERS,
35+
include_package_data=True,
36+
zip_safe=False
2837
)

0 commit comments

Comments
 (0)