Skip to content

Commit 9b934b1

Browse files
Tom ClarkTom Clark
authored andcommitted
Updated setup.py to work as jsut a module, with a TODO to move out certain commands to the example app template.
1 parent 7cab762 commit 9b934b1

File tree

1 file changed

+22
-12
lines changed

1 file changed

+22
-12
lines changed

setup.py

Lines changed: 22 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,22 @@
1-
from setuptools import setup
2-
3-
setup(
4-
name="octue",
5-
version=0.1,
6-
py_modules=['cli'],
7-
install_requires=['Click'],
8-
entry_points='''
9-
[console_scripts]
10-
octue=octue_app
11-
''',
12-
)
1+
from distutils.core import setup
2+
3+
4+
setup(name='octue-sdk-python',
5+
version='0.1',
6+
packages=['octue', 'octue.utils', 'octue.config', 'octue.manifest', 'octue.resources'],
7+
url='https://www.github.com/octue/octue-sdk-python',
8+
license='',
9+
author='thclark',
10+
author_email='[email protected]',
11+
description='A python package providing a python SDK to the Octue API and providing supporting functions to Octue applications')
12+
13+
14+
# TODO move the following into octue example app template
15+
# setup(
16+
# py_modules=['cli'],
17+
# install_requires=['Click'],
18+
# entry_points='''
19+
# [console_scripts]
20+
# octue=octue_app
21+
# ''',
22+
# )

0 commit comments

Comments
 (0)