We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents f5c62cd + 373f6b2 commit 8c5371cCopy full SHA for 8c5371c
setup.py
@@ -1,6 +1,8 @@
1
from distutils.core import setup
2
3
4
+_README_CONTENT = open('README.md').read()
5
+
6
setup(
7
name='topicnet',
8
packages=[
@@ -15,6 +17,8 @@
15
17
version='0.9.0',
16
18
license='MIT',
19
description='TopicNet is a module for topic modelling using ARTM algorithm',
20
+ long_description=_README_CONTENT,
21
+ long_description_content_type='text/markdown',
22
author='Machine Intelligence Laboratory',
23
author_email='alex.goncharov@phystech.edu',
24
url='https://github.com/machine-intelligence-laboratory/TopicNet',
0 commit comments