@@ -25,7 +25,7 @@ def read(*names, **kwargs):
25
25
26
26
setup (
27
27
name = 'PyStateMachines' ,
28
- version = '0.0.3 ' ,
28
+ version = '0.0.5 ' ,
29
29
license = 'GNU GENERAL PUBLIC LICENSE' ,
30
30
description = 'PyStateMachines Package' ,
31
31
long_description = '%s\n %s' % (
@@ -35,6 +35,7 @@ def read(*names, **kwargs):
35
35
).sub ('' , read ('README.md' )),
36
36
re .sub (':[a-z]+:`~?(.*?)`' , r'``\1``' , read ('CHANGELOG.md' ))
37
37
),
38
+ long_description_content_type = 'text/markdown'
38
39
author = 'ZigRazor' ,
39
40
40
41
url = 'https://github.com/ZigRazor/PyStateMachine' ,
@@ -65,13 +66,19 @@ def read(*names, **kwargs):
65
66
# 'Programming Language :: Python :: Implementation :: Jython',
66
67
# 'Programming Language :: Python :: Implementation :: Stackless',
67
68
'Topic :: Utilities' ,
69
+ 'Topic :: Software Development :: Libraries' ,
68
70
],
69
71
project_urls = {
70
72
'Changelog' : changelog_url ,
71
73
'Issue Tracker' : 'https://github.com/ZigRazor/PyStateMachine/issues' ,
72
74
},
73
75
keywords = [
74
76
# eg: 'keyword1', 'keyword2', 'keyword3',
77
+ 'development' ,
78
+ 'state' ,
79
+ 'finite-state machine' ,
80
+ 'automaton' ,
81
+ 'state-machine'
75
82
],
76
83
python_requires = '>=3' ,
77
84
install_requires = [
0 commit comments