22from setuptools .command .install import install
33
44
5+ with open ("README.md" , "r" ) as fh :
6+ long_description = fh .read ()
7+
8+
59class PostInstallCommand (install ):
610 """Post-installation for installation mode."""
711
@@ -13,13 +17,16 @@ def run(self):
1317 install .run (self )
1418
1519
16- install_requires = []
20+ install_requires = ['wheel' ]
1721tests_require = install_requires + ['nose' ]
1822
1923setup (
2024 name = 'py-sourcemap' ,
21- version = '0.1' ,
25+ version = '0.1.9 ' ,
2226 packages = ['py_sourcemap' ],
27+ description = 'A tiny source-map-mappings bindings for python using PyO3' ,
28+ long_description = long_description ,
29+ url = 'https://github.com/LeetCode-OpenSource/py-sourcemap' ,
2330 classifiers = [
2431 'Development Status :: 4 - Beta' ,
2532 'Environment :: Console' ,
@@ -30,6 +37,7 @@ def run(self):
3037 'Operating System :: POSIX' ,
3138 'Programming Language :: Python' ,
3239 'Programming Language :: Rust' ,
40+ 'License :: OSI Approved :: MIT License' ,
3341 ],
3442 install_requires = install_requires ,
3543 tests_require = tests_require ,
0 commit comments