16
16
LIBRARIES_FOLDER_NAME = '.jupyter_kotlin'
17
17
LIBRARIES_CACHE_FOLDER_NAME = 'cache'
18
18
VERSION_FILE_NAME = 'VERSION'
19
+ README_FILE_NAME = 'README.md'
19
20
20
21
21
22
def main ():
@@ -26,16 +27,29 @@ def main():
26
27
abspath = path .abspath (__file__ )
27
28
current_dir = path .dirname (abspath )
28
29
version_file = path .join (current_dir , VERSION_FILE_NAME )
30
+ readme_file = path .join (current_dir , README_FILE_NAME )
29
31
30
32
with open (version_file , 'r' ) as f :
31
33
version = f .read ().strip ()
32
34
35
+ with open (readme_file , 'r' ) as f :
36
+ long_description = f .read ()
37
+
38
+ classifiers = [
39
+ "Framework :: Jupyter" ,
40
+ "Development Status :: 4 - Beta" ,
41
+ "Programming Language :: Kotlin" ,
42
+ ]
43
+
33
44
setup (name = "kotlin-jupyter-kernel" ,
34
45
author = "JetBrains" ,
35
46
version = version ,
36
47
url = "https://github.com/Kotlin/kotlin-jupyter" ,
37
48
license = "Apache 2.0" ,
38
49
description = "Kotlin kernel for Jupyter notebooks" ,
50
+ long_description = long_description ,
51
+ long_description_content_type = "text/markdown" ,
52
+ classifiers = classifiers ,
39
53
packages = find_packages (),
40
54
package_data = PACKAGE_DATA ,
41
55
data_files = DATA_FILES
0 commit comments