Skip to content

Commit 887ab14

Browse files
authored
Update Setup.py for mackdown and keywords
1 parent 32867e4 commit 887ab14

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

setup.py

+8-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ def read(*names, **kwargs):
2525

2626
setup(
2727
name='PyStateMachines',
28-
version='0.0.3',
28+
version='0.0.5',
2929
license='GNU GENERAL PUBLIC LICENSE',
3030
description='PyStateMachines Package',
3131
long_description='%s\n%s' % (
@@ -35,6 +35,7 @@ def read(*names, **kwargs):
3535
).sub('', read('README.md')),
3636
re.sub(':[a-z]+:`~?(.*?)`', r'``\1``', read('CHANGELOG.md'))
3737
),
38+
long_description_content_type='text/markdown'
3839
author='ZigRazor',
3940
author_email='[email protected]',
4041
url='https://github.com/ZigRazor/PyStateMachine',
@@ -65,13 +66,19 @@ def read(*names, **kwargs):
6566
# 'Programming Language :: Python :: Implementation :: Jython',
6667
# 'Programming Language :: Python :: Implementation :: Stackless',
6768
'Topic :: Utilities',
69+
'Topic :: Software Development :: Libraries',
6870
],
6971
project_urls={
7072
'Changelog': changelog_url,
7173
'Issue Tracker': 'https://github.com/ZigRazor/PyStateMachine/issues',
7274
},
7375
keywords=[
7476
# eg: 'keyword1', 'keyword2', 'keyword3',
77+
'development',
78+
'state',
79+
'finite-state machine',
80+
'automaton',
81+
'state-machine'
7582
],
7683
python_requires='>=3',
7784
install_requires=[

0 commit comments

Comments
 (0)