Skip to content

Commit 9b915be

Browse files
committed
v0.2.3
1 parent ea89dfa commit 9b915be

File tree

2 files changed

+3
-5
lines changed

2 files changed

+3
-5
lines changed

setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@
22
setup(
33
name = 'topicnet', # How you named your package folder (MyLib)
44
packages = ['topicnet', 'topicnet.cooking_machine', 'topicnet.cooking_machine.models', 'topicnet.cooking_machine.cubes', 'topicnet.viewers'], # Chose the same as "name"
5-
version = '0.2.1', # Start with a small number and increase it with every change you make
5+
version = '0.2.3', # Start with a small number and increase it with every change you make
66
license='MIT', # Chose a license from here: https://help.github.com/articles/licensing-a-repository
77
description = 'TopicNet is a module for topic modelling using ARTM algorithm', # Give a short description about your library
88
author = 'Machine Intelligence Laboratory', # Type in your name
99
author_email = 'alex.goncharov@phystech.edu', # Type in your E-Mail
1010
url = 'https://github.com/machine-intelligence-laboratory/TopicNet', # Provide either the link to your github or to your website
11-
download_url = 'https://github.com/machine-intelligence-laboratory/TopicNet/archive/v0.2.1.tar.gz', # I explain this later on
11+
download_url = 'https://github.com/machine-intelligence-laboratory/TopicNet/archive/v0.2.3.tar.gz', # I explain this later on
1212
keywords = ['ARTM', 'topic', 'modelling', 'visualization'], # Keywords that define your package best
1313
install_requires=[ # I get to this in a second
1414
'numpy',
@@ -34,4 +34,4 @@
3434
'Programming Language :: Python :: 3.5',
3535
'Programming Language :: Python :: 3.6',
3636
],
37-
)
37+
)

topicnet/cooking_machine/experiment.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,6 @@
1313

1414
from .models import BaseModel
1515

16-
# import topicnet.cooking_machine.cubes as tncubes
17-
1816
START = '<'*8 + 'start' + '>'*8
1917

2018
UP_END = "┌"

0 commit comments

Comments
 (0)