Skip to content

Commit

Permalink
Fix pip install / setup.py
Browse files Browse the repository at this point in the history
#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
  • Loading branch information
gwenblum authored Nov 18, 2024
1 parent 39c734f commit ed68afc
Show file tree
Hide file tree
Showing 29 changed files with 3 additions and 9 deletions.
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.
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.
File renamed without changes.
File renamed without changes.
12 changes: 3 additions & 9 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,10 @@
from glob import glob

from setuptools import setup, find_packages
packagedata = True

setup_args = {
'name': 'steelscript.netim',
'version': '24.2.1',
'version': '24.11.1',
'author': 'Riverbed Community',
'author_email': '[email protected]',
'url': 'https://community.riverbed.com',
Expand Down Expand Up @@ -60,14 +59,9 @@
'entry_points': {
'steel.commands': [
'netim = steelscript.netim.commands'
],
'portal.plugins': [
'netim = steelscript.netim.appfwk.plugin:NetIMPlugin'
],
]
},
}

if packagedata:
setup_args['include_package_data'] = True

setup(**setup_args)
setup(**setup_args)

0 comments on commit ed68afc

Please sign in to comment.