Skip to content

Commit

Permalink
Merge pull request #21 from buildtesters/v0.2.0
Browse files Browse the repository at this point in the history
increment version to 0.2.0
  • Loading branch information
shahzebsiddiqui authored Oct 25, 2021
2 parents ed5339f + 0f61fbb commit e024250
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lmod/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
LMODULE_VERSION = "0.1.0"
LMODULE_VERSION = "0.2.0"
__version__ = LMODULE_VERSION
10 changes: 9 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,16 +10,24 @@
long_description=open("README.rst").read(),
url="https://github.com/buildtesters/lmodule",
license="MIT",
python_requires="~=3.6",
python_requires=">=3.6, <4",
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Software Development :: Libraries",
],
packages=find_packages(),
include_package_data=True,
project_urls={
"Source Code": "https://github.com/buildtesters/lmodule",
"Documentation": "https://lmodule.readthedocs.io/",
"Bug Report": "https://github.com/buildtesters/lmodule/issues",
},
)

0 comments on commit e024250

Please sign in to comment.