diff --git a/release.xsh b/release.xsh index 0c2638e..50d0c0d 100644 --- a/release.xsh +++ b/release.xsh @@ -1,4 +1,9 @@ #!/usr/local/bin/xonsh -python setup.py sdist -twine upload dist/* \ No newline at end of file +try: + pip install wheel + python setup.py sdist bdist_wheel --universal + twine upload dist/* + +finally: + rm -rf dist/ build/ \ No newline at end of file diff --git a/setup.py b/setup.py index 9778308..04de8b0 100644 --- a/setup.py +++ b/setup.py @@ -31,12 +31,12 @@ if sys.version_info[:2] < (3, 7): setup( name="django-stubs", - version="0.5.0", + version="0.5.1", description='Django mypy stubs', long_description=readme, long_description_content_type='text/markdown', - license='BSD', - url="https://github.com/mkurnikov/django-stubs.git", + license='MIT', + url="https://github.com/mkurnikov/django-stubs", author="Maksim Kurnikov", author_email="maxim.kurnikov@gmail.com", py_modules=[], @@ -46,6 +46,8 @@ setup( package_data={'django-stubs': find_stub_files('django-stubs')}, classifiers=[ 'Development Status :: 3 - Alpha', - 'Programming Language :: Python :: 3' + 'License :: OSI Approved :: MIT License', + 'Programming Language :: Python :: 3.6', + 'Programming Language :: Python :: 3.7' ] )