Skip to content

Commit 65c4589

Browse files
committed
Add package metadata to setup.py
1 parent 807d7d9 commit 65c4589

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

setup.py

+13
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,22 @@
77
with open('src/iris/__init__.py', 'r') as fd:
88
version = re.search(r'^__version__\s*=\s*[\'"]([^\'"]*)[\'"]', fd.read(), re.MULTILINE).group(1)
99

10+
with open('README.md', 'r') as fd:
11+
long_description = fd.read()
12+
1013
setuptools.setup(
1114
name='iris',
1215
version=version,
16+
description='Iris is a highly configurable and flexible service for paging and messaging.',
17+
long_description=long_description,
18+
long_description_content_type="text/markdown",
19+
url='https://github.com/linkedin/iris',
20+
classifiers=[
21+
'Development Status :: 5 - Production/Stable',
22+
'License :: OSI Approved :: BSD License',
23+
'Natural Language :: English',
24+
'Programming Language :: Python :: 3'
25+
],
1326
package_dir={'': 'src'},
1427
packages=setuptools.find_packages('src'),
1528
include_package_data=True,

0 commit comments

Comments
 (0)