Skip to content

Commit

Permalink
Refactoring folders. src removed.
Browse files Browse the repository at this point in the history
  • Loading branch information
dermatologist committed Jul 23, 2019
1 parent a8d8c84 commit f054588
Show file tree
Hide file tree
Showing 13 changed files with 21 additions and 13 deletions.
10 changes: 9 additions & 1 deletion notes/pypi.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,12 @@

## Version
```text
python setup.py --version
python setup.py bdist_wheel
```

## Upload

```
Expand All @@ -11,7 +19,7 @@ twine upload dist/*

* ADD long-description-content-type = text/markdown

```buildoutcfg
```
long-description = file: README.md
long-description-content-type = text/markdown
Expand Down
3 changes: 1 addition & 2 deletions qrmine.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,7 @@
# -*- coding: utf-8 -*-


from src.qrmine import main

from qrmine import main

if __name__ == '__main__':
main.main_routine()
File renamed without changes.
4 changes: 4 additions & 0 deletions qrmine/__main__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
from . import main

if __name__ == '__main__':
main.main_routine()
File renamed without changes.
14 changes: 7 additions & 7 deletions src/qrmine/main.py → qrmine/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@
import click
import textacy

from src.qrmine import Content
from src.qrmine import Network
from src.qrmine import Qrmine
from src.qrmine import ReadData
from src.qrmine import Sentiment
from src.qrmine import MLQRMine
from src.qrmine import __version__
from qrmine import Content
from qrmine import Network
from qrmine import Qrmine
from qrmine import ReadData
from qrmine import Sentiment
from qrmine import MLQRMine
from qrmine import __version__


@click.command()
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Empty file removed src/__init__.py
Empty file.
3 changes: 0 additions & 3 deletions src/qrmine/__main__.py

This file was deleted.

0 comments on commit f054588

Please sign in to comment.