diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..b25c15b --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +*~ diff --git a/pythonnet/setup.py b/pythonnet/setup.py index c68c078..0112310 100755 --- a/pythonnet/setup.py +++ b/pythonnet/setup.py @@ -58,4 +58,18 @@ def pkgconfig(*packages, **kw): setup(name="clr", ext_modules = extensions, scripts = ["src/monoclr/clrpython%s" % VERSION], - ) \ No newline at end of file + version="2.0.0", + + classifiers = [ + 'Development Status :: 4 - Beta', + 'Intended Audience :: Developers', + 'Natural Language :: English', + 'License :: OSI Approved :: Zope Public License', + 'Operating System :: Microsoft :: Windows :: Windows 7', + 'Operating System :: POSIX :: Linux', + 'Programming Language :: Python', + 'Programming Language :: Python :: 2', + 'Programming Language :: Python :: 2.7', + 'Topic :: Software Development :: Libraries :: Python Modules', + ], + ) diff --git a/pythonnet/setupwin.py b/pythonnet/setupwin.py index b40d965..c1b5dcb 100644 --- a/pythonnet/setupwin.py +++ b/pythonnet/setupwin.py @@ -61,5 +61,19 @@ def build_extension(self, ext): ], cmdclass = { "build_ext" : PythonNET_BuildExt - } + }, + version="2.0.0", + + classifiers = [ + 'Development Status :: 4 - Beta', + 'Intended Audience :: Developers', + 'Natural Language :: English', + 'License :: OSI Approved :: Zope Public License', + 'Operating System :: Microsoft :: Windows :: Windows 7', + 'Operating System :: POSIX :: Linux', + 'Programming Language :: Python', + 'Programming Language :: Python :: 2', + 'Programming Language :: Python :: 2.7', + 'Topic :: Software Development :: Libraries :: Python Modules', + ], )