Skip to content

Commit

Permalink
Merge pull request #51 from MycroftAI/feature/pypi-info
Browse files Browse the repository at this point in the history
Update info for PyPI release
  • Loading branch information
krisgesling authored Sep 9, 2020
2 parents 94e82c5 + e5f4720 commit 61a90ea
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 3 deletions.
2 changes: 1 addition & 1 deletion msk/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,4 @@
# See the License for the specific language governing permissions and
# limitations under the License.
#
__version__ = '0.3.15' # Also update in setup.py
__version__ = '0.3.16' # Also update in setup.py
19 changes: 17 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,12 @@
# under the License.
from setuptools import setup

with open("README.md", "r") as fh:
long_description = fh.read()

setup(
name='msk',
version='0.3.15', # Also update in msk/__init__.py
version='0.3.16', # Also update in msk/__init__.py
packages=['msk', 'msk.actions'],
package_data={'msk': ['licenses/*']},
install_requires=['GitPython>=3.0.5', 'msm>=0.5.13', 'pygithub',
Expand All @@ -35,9 +38,21 @@
maintainer='Matthew Scholefield',
maintainer_email='matthew331199@gmail.com',
description='Mycroft Skills Kit',
long_description=long_description,
long_description_content_type="text/markdown",
entry_points={
'console_scripts': {
'msk=msk.__main__:main'
}
}
},
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',

'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
]
)

0 comments on commit 61a90ea

Please sign in to comment.