We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 106b190 commit 23e36c2Copy full SHA for 23e36c2
setup.py
@@ -14,8 +14,17 @@
14
version='0.2.1',
15
description='Serializable hash objects',
16
url='https://github.com/zachmullen/hashstate',
17
+ license='MIT',
18
long_description=readme,
19
long_description_content_type='text/markdown',
20
packages=['hashstate'],
- ext_modules=[c_ext]
21
+ ext_modules=[c_ext],
22
+ classifiers=[
23
+ 'Development Status :: 3 - Alpha',
24
+ 'License :: OSI Approved :: MIT License',
25
+ 'Intended Audience :: Developers',
26
+ 'Operating System :: OS Independent',
27
+ 'Programming Language :: Python',
28
+ 'Programming Language :: Python :: 3'
29
+ ]
30
)
0 commit comments