Skip to content

Commit

Permalink
release version 0.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
stefan6419846 committed Nov 21, 2023
1 parent 1db1fc6 commit 8469ddb
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 28 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,12 @@
# Development version

# Version 0.4.0 - 2023-11-21

* Switch to *mypy* strict mode.
* Add unit tests.
* Fix handling of license clues.
* Drop support for Python 3.7.
* Add support for download URLs.

# Version 0.3.2 - 2023-08-21

Expand Down
56 changes: 28 additions & 28 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,43 +11,43 @@


setuptools.setup(
name='license_tools',
description='Collection of tools for working with Open Source licenses',
version='0.3.2',
license='Apache-2.0',
long_description=Path(ROOT_DIRECTORY / 'README.md').read_text(encoding='UTF-8'),
long_description_content_type='text/markdown',
author='stefan6419846',
url='https://github.com/stefan6419846/license_tools',
name="license_tools",
description="Collection of tools for working with Open Source licenses",
version="0.4.0",
license="Apache-2.0",
long_description=Path(ROOT_DIRECTORY / "README.md").read_text(encoding="UTF-8"),
long_description_content_type="text/markdown",
author="stefan6419846",
url="https://github.com/stefan6419846/license_tools",
packages=setuptools.find_packages(
include=['license_tools', 'license_tools.*']
include=["license_tools", "license_tools.*"]
),
include_package_data=True,
python_requires=">=3.8, <4",
install_requires=[
'scancode-toolkit',
'typecode-libmagic',
'joblib',
"scancode-toolkit",
"typecode-libmagic",
"joblib",
],
extras_require={
'dev': [
'flake8',
'flake8-bugbear',
'pep8-naming',
'mypy',
'requests',
'types-requests',
"dev": [
"flake8",
"flake8-bugbear",
"pep8-naming",
"mypy",
"requests",
"types-requests",
]
},
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3 :: Only',
'Topic :: Software Development',
'Topic :: Utilities',
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Software Development",
"Topic :: Utilities",
],
keywords=['open source', 'license', 'package', 'dependency', 'licensing'],
keywords=["open source", "license", "package", "dependency", "licensing"],
)

0 comments on commit 8469ddb

Please sign in to comment.