Skip to content

Commit ed68afc

Browse files
authored
Fix pip install / setup.py
#9 (#10) * Patch pip install / only keep py files (excluding folders that break) * Remove unsupported entrypoint * Move folders from /examples into /demos * Version 24.11.1
1 parent 39c734f commit ed68afc

29 files changed

+3
-9
lines changed
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

setup.py

+3-9
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,10 @@
77
from glob import glob
88

99
from setuptools import setup, find_packages
10-
packagedata = True
1110

1211
setup_args = {
1312
'name': 'steelscript.netim',
14-
'version': '24.2.1',
13+
'version': '24.11.1',
1514
'author': 'Riverbed Community',
1615
'author_email': '[email protected]',
1716
'url': 'https://community.riverbed.com',
@@ -60,14 +59,9 @@
6059
'entry_points': {
6160
'steel.commands': [
6261
'netim = steelscript.netim.commands'
63-
],
64-
'portal.plugins': [
65-
'netim = steelscript.netim.appfwk.plugin:NetIMPlugin'
66-
],
62+
]
6763
},
6864
}
6965

70-
if packagedata:
71-
setup_args['include_package_data'] = True
7266

73-
setup(**setup_args)
67+
setup(**setup_args)

0 commit comments

Comments
 (0)