Skip to content

Commit ef5caac

Browse files
authored
V0.1.0 (#6)
* Prepare for pypi * dist 0.1.0
1 parent 41217ad commit ef5caac

File tree

6 files changed

+13
-11
lines changed

6 files changed

+13
-11
lines changed

MANIFEST

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# file GENERATED by distutils, do NOT edit
2+
setup.py
3+
bossphorus/StorageManager.py
4+
bossphorus/__init__.py
5+
bossphorus/config.py
6+
bossphorus/utils.py

bossphorus/StorageManager.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@
1818
import os
1919
import numpy as np
2020

21-
from config import BLOCK_SIZE, UPLOADS_PATH
22-
from utils import file_compute, blockfile_indices
21+
from .config import BLOCK_SIZE, UPLOADS_PATH
22+
from .utils import file_compute, blockfile_indices
2323

2424

2525
class StorageManager:

bossphorus/__init__.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,9 @@
2525
from flask import Flask, request, Response, jsonify, make_response
2626
import numpy as np
2727

28-
from StorageManager import FilesystemStorageManager
29-
from config import BLOCK_SIZE, UPLOADS_PATH
30-
from utils import file_compute, blockfile_indices
28+
from .StorageManager import FilesystemStorageManager
29+
from .config import BLOCK_SIZE, UPLOADS_PATH
30+
from .utils import file_compute, blockfile_indices
3131

3232

3333
__version__ = "0.1.0"

bossphorus/utils.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
limitations under the License.
1515
"""
1616

17-
from config import BLOCK_SIZE
17+
from .config import BLOCK_SIZE
1818

1919

2020
def file_compute(

dist/bossphorus-0.1.0.tar.gz

4.09 KB
Binary file not shown.

setup.py

+1-5
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,5 @@
3030
'Development Status :: 3 - Alpha',
3131
'Intended Audience :: Developers',
3232
'Programming Language :: Python :: 3',
33-
],
34-
install_requires=[
35-
'pandas',
36-
'numpy'
37-
],
33+
]
3834
)

0 commit comments

Comments
 (0)