Skip to content

Commit

Permalink
Added some classifiers.
Browse files Browse the repository at this point in the history
  • Loading branch information
Lewis committed Apr 16, 2012
1 parent d3c1828 commit 9a8fab1
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 10 deletions.
File renamed without changes.
9 changes: 1 addition & 8 deletions pycksum/__init__.py
Original file line number Original file line Diff line number Diff line change
@@ -1,11 +1,4 @@
""" version_info = ['0','3','2']
This module implements the cksum command found in most UNIXes in pure
python.
The constants and routine are cribbed from the POSIX man page
"""

version_info = ['0.3.1']
version = ".".join(map(str, version_info)) version = ".".join(map(str, version_info))


crctab = [ 0x00000000, 0x04c11db7, 0x09823b6e, 0x0d4326d9, 0x130476dc, crctab = [ 0x00000000, 0x04c11db7, 0x09823b6e, 0x0d4326d9, 0x130476dc,
Expand Down
17 changes: 15 additions & 2 deletions setup.py
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
from setuptools.extension import Extension from setuptools.extension import Extension
from pycksum import version from pycksum import version


long_description = open('README', 'rb').read() long_description = open('README.rst', 'rb').read()


setup( setup(
name = "pycksum", name = "pycksum",
Expand All @@ -21,5 +21,18 @@
'console_scripts' : [ 'console_scripts' : [
'pycksum = pycksum.main:main', 'pycksum = pycksum.main:main',
] ]
} },
classifiers = [
'Intended Audience :: Developers',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Unix',
'Operating System :: POSIX',
'Programming Language :: Python',
'Programming Language :: Python :: 2.5',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules',

],
) )

0 comments on commit 9a8fab1

Please sign in to comment.