Skip to content

Commit 693746f

Browse files
JuanCJuanC
authored andcommitted
adding keywords to project description
1 parent 4588859 commit 693746f

File tree

1 file changed

+15
-1
lines changed

1 file changed

+15
-1
lines changed

setup.py

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
setup(
44
name="python_sharp", # Unique name of your package on PyPI
5-
version="1.2.0", # Version of the package, following semantic versioning
5+
version="1.2.1", # Version of the package, following semantic versioning
66
author="Juan Carlos Lopez Garcia", # Author's name
77
author_email="juanclopgar@gmail.com", # Contact email
88
description="python# (python sharp) is a module created to add EOP (event oriented programing) into python in the most native feeling, easy sintax way possible. Based on C# event implementation structure", # Short description
@@ -18,5 +18,19 @@
1818
python_requires=">=3.6", # Minimum required Python version
1919
install_requires=[ # Dependencies needed by package
2020
],
21+
keywords=[
22+
'event oriented programming',
23+
'EOP',
24+
'event-driven',
25+
'Python events',
26+
'delegates',
27+
'@event',
28+
'callback management',
29+
'C# inspired',
30+
'Python decorators',
31+
'event',
32+
'events',
33+
'easy'
34+
],
2135
include_package_data=True #include the data mentioned on the manifest
2236
)

0 commit comments

Comments
 (0)