Skip to content

Commit f480d50

Browse files
authored
Merge pull request #562 from superannotateai/sa_server
Sa server
2 parents da8fa78 + 7b7894e commit f480d50

File tree

5 files changed

+12
-5
lines changed

5 files changed

+12
-5
lines changed

pytest.ini

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,6 @@
22
minversion = 3.7
33
log_cli=true
44
python_files = test_*.py
5-
;pytest_plugins = ['pytest_profiling']
6-
;addopts = -n auto --dist=loadscope
5+
pytest_plugins = ['pytest_profiling']
6+
addopts = -n auto --dist=loadscope
7+

setup.py

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,12 @@ def get_version():
2222
name='superannotate',
2323
version=sdk_version,
2424
package_dir={"": "src"},
25-
package_data={"superannotate": ["logging.conf"]},
2625
packages=find_packages(where="src"),
26+
package_data={
27+
"superannotate.lib.app.server": ['*.txt', '*.sh', '*.rst', 'Dockerfile'],
28+
"superannotate.lib.app.server.templates": ['*.html'],
29+
"superannotate.lib.app.server.deployment": ['*.ini', '*.sh'],
30+
},
2731
description='Python SDK to SuperAnnotate platform',
2832
license='MIT',
2933
author='SuperAnnotate AI',
@@ -48,5 +52,7 @@ def get_version():
4852
project_urls={
4953
'Documentation': 'https://superannotate.readthedocs.io/en/stable/',
5054
},
51-
python_requires='>=3.7'
55+
python_requires='>=3.7',
56+
include_package_data=True,
57+
5258
)

src/superannotate/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
import sys
44
import typing
55

6-
__version__ = "4.4.9dev5"
6+
__version__ = "4.4.10dev3"
77

88
sys.path.append(os.path.split(os.path.realpath(__file__))[0])
99

src/superannotate/lib/app/server/deployment/__init__.py

Whitespace-only changes.

src/superannotate/lib/app/server/templates/__init__.py

Whitespace-only changes.

0 commit comments

Comments
 (0)