Skip to content

Commit 9b3ce22

Browse files
committed
Fix packaging
1 parent fe245b0 commit 9b3ce22

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

MANIFEST.in

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
include post_setup.py
2+
include README.md
3+
include emoji.pth

post_setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
def main():
66
here = path.abspath(path.dirname(__file__))
7-
print('Copying 'emoji.pth' to %s' % get_python_lib())
7+
print("Copying 'emoji.pth' to %s" % get_python_lib())
88
copyfile(
99
path.join(here, 'emoji.pth'),
1010
path.join(get_python_lib(), 'emoji.pth')

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,12 +33,12 @@ def run(self):
3333

3434
if __name__ == '__main__':
3535
setup(
36-
name='emoji_encoding',
36+
name='emoji-encoding',
3737

3838
# Versions should comply with PEP440. For a discussion on single-sourcing
3939
# the version across setup.py and the project code, see
4040
# https://packaging.python.org/en/latest/single_source_version.html
41-
version='0.0.1',
41+
version='0.0.5',
4242

4343
description='Module providing Emoji encoding for Python',
4444
long_description=long_description,

0 commit comments

Comments
 (0)