From ea72ff8485a32e05c48f2b271f2782275fc28931 Mon Sep 17 00:00:00 2001 From: Przemyslaw Gajda Date: Sun, 29 Apr 2012 00:56:00 +0200 Subject: [PATCH] Applied some changes according to http://getpython3.com/diveintopython3/packaging.html --- COPYING => COPYING.txt | 0 MANIFEST.in | 2 ++ README => README.txt | 0 setup.py | 13 ++++++++++++- 4 files changed, 14 insertions(+), 1 deletion(-) rename COPYING => COPYING.txt (100%) create mode 100644 MANIFEST.in rename README => README.txt (100%) diff --git a/COPYING b/COPYING.txt similarity index 100% rename from COPYING rename to COPYING.txt diff --git a/MANIFEST.in b/MANIFEST.in new file mode 100644 index 0000000..b5ad0c1 --- /dev/null +++ b/MANIFEST.in @@ -0,0 +1,2 @@ +include COPYING.txt +include README.txt diff --git a/README b/README.txt similarity index 100% rename from README rename to README.txt diff --git a/setup.py b/setup.py index feab1dd..4ddd25c 100644 --- a/setup.py +++ b/setup.py @@ -20,8 +20,10 @@ from distutils.core import setup setup(name='mox3', version='0.6.0', - py_modules=['mox3.mox', 'mox3.stubout'], + packages=['mox3'], url='https://github.com/quermit/pymox', + author='quermit', + author_email='quermit@gmail.com', maintainer='quermit', maintainer_email='quermit@gmail.com', license='Apache License, Version 2.0', @@ -29,4 +31,13 @@ setup(name='mox3', long_description=('Mox3 is a mock object framework for Python 3 based on ' 'the Google mox framework. The library should work ' 'well with Python 3.2, 2.7 and 2.6'), + classifiers=['Programming Language :: Python', + 'License :: OSI Approved :: Apache Software License', + 'Programming Language :: Python :: 2.6', + 'Programming Language :: Python :: 2.7', + 'Programming Language :: Python :: 3', + 'Operating System :: OS Independent', + 'Development Status :: 4 - Beta', + 'Intended Audience :: Developers', + 'Topic :: Software Development :: Testing'], )