Skip to content

Commit

Permalink
Fixed setup.py to include classes for pip install
Browse files Browse the repository at this point in the history
  • Loading branch information
Sieboldianus committed Dec 5, 2018
1 parent 39beb4d commit 439eeb2
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
1 change: 1 addition & 0 deletions README.md
Expand Up @@ -57,6 +57,7 @@ Python's site-packages folder with:
```shell
python setup.py develop
```
(use `python setup.py develop --uninstall` to uninstall tool in develop mode)

Now you can run tool in your shell with (Origin 3 = Twitter):
```shell
Expand Down
2 changes: 1 addition & 1 deletion lbsntransform/__main__.py
Expand Up @@ -14,7 +14,7 @@

__author__ = "Alexander Dunkel"
__license__ = "GNU GPLv3"
__version__ = "0.1.510"
__version__ = "0.1.511"

import logging
import io
Expand Down
7 changes: 6 additions & 1 deletion setup.py
Expand Up @@ -9,7 +9,7 @@

## setuptools dev
setup( name = "lbsntransform",
version = "0.1.510",
version = "0.1.511",
description = "Location based social network (LBSN) data structure format & transfer tool",
long_description=long_description,
long_description_content_type='text/markdown',
Expand All @@ -18,6 +18,11 @@
url='https://gitlab.vgiscience.de/lbsn/lbsntransform',
license='GNU GPLv3 or any higher',
packages=['lbsntransform'],
package_data = {
'classes': ['*'],
'config': ['*'],
'tests': ['*']
},
install_requires=[
'lbsnstructure>=0.2.6.211',
'protobuf',
Expand Down

0 comments on commit 439eeb2

Please sign in to comment.