Skip to content

Commit

Permalink
Merge pull request #248 from cvzi/wheel
Browse files Browse the repository at this point in the history
Wheel for Python 2 and 3
  • Loading branch information
TahirJalilov authored Feb 4, 2023
2 parents e5d90f9 + 5d9a6be commit 1a95133
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 3 deletions.
5 changes: 5 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
[bdist_wheel]
universal = 1

[metadata]
license_files = LICENSE.txt
15 changes: 12 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@
'Topic :: Software Development :: Libraries :: Python Modules',
'Typing :: Typed'
],
description="Emoji for Python",
description='Emoji for Python',
keywords=['emoji'],
extras_require={
'dev': [
Expand All @@ -68,10 +68,19 @@
],
},
include_package_data=True,
license="New BSD",
license='New BSD',
long_description=readme_content,
packages=['emoji', 'emoji.unicode_codes'],
package_data={"emoji": ["py.typed"]},
package_data={
'emoji': [
'py.typed',
'*.pyi',
],
'emoji.unicode_codes': [
'py.typed',
'*.pyi',
],
},
url=source,
version=version,
zip_safe=True,
Expand Down

0 comments on commit 1a95133

Please sign in to comment.