Skip to content
This repository was archived by the owner on Nov 13, 2024. It is now read-only.

Commit 38f56b7

Browse files
committed
More packaging work
1 parent 07fcfc3 commit 38f56b7

File tree

2 files changed

+9
-2
lines changed

2 files changed

+9
-2
lines changed

MANIFEST.in

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
include README.md
22
include LICENSE
3-
include languagecodes/py.typed
3+
include languagecodes/py.typed
4+
include languagecodes/iso-6390-3.tab

setup.py

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,15 @@
11
from setuptools import setup
22

3+
with open("README.md") as f:
4+
long_description = f.read()
5+
6+
37
setup(
48
name="languagecodes",
59
version="1.0.9",
610
description="A library that normalises language codes",
11+
long_description=long_description,
12+
long_description_content_type="text/markdown",
713
classifiers=[
814
"Development Status :: 3 - Alpha",
915
"Intended Audience :: Developers",
@@ -22,7 +28,7 @@
2228
packages=["languagecodes"],
2329
namespace_packages=[],
2430
include_package_data=True,
25-
package_data={"languagecodes": ["py.typed"]},
31+
package_data={"languagecodes": ["py.typed", "iso-639-3.tab"]},
2632
zip_safe=False,
2733
test_suite="nose.collector",
2834
install_requires=[],

0 commit comments

Comments
 (0)