File tree 1 file changed +13
-0
lines changed
1 file changed +13
-0
lines changed Original file line number Diff line number Diff line change 7
7
with open ('src/iris/__init__.py' , 'r' ) as fd :
8
8
version = re .search (r'^__version__\s*=\s*[\'"]([^\'"]*)[\'"]' , fd .read (), re .MULTILINE ).group (1 )
9
9
10
+ with open ('README.md' , 'r' ) as fd :
11
+ long_description = fd .read ()
12
+
10
13
setuptools .setup (
11
14
name = 'iris' ,
12
15
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
+ ],
13
26
package_dir = {'' : 'src' },
14
27
packages = setuptools .find_packages ('src' ),
15
28
include_package_data = True ,
You can’t perform that action at this time.
0 commit comments