Skip to content

Commit

Permalink
remove inits
Browse files Browse the repository at this point in the history
  • Loading branch information
laszewsk committed Nov 26, 2023
1 parent d27d1d4 commit ee4ec0e
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 56 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
5.0.2
5.0.3
Empty file removed __init__.py
Empty file.
17 changes: 0 additions & 17 deletions cloudmesh/common/__init__.py

This file was deleted.

28 changes: 0 additions & 28 deletions cloudmesh/common/notebook/__init__.py

This file was deleted.

Empty file removed cloudmesh/common/run/__init__.py
Empty file.
3 changes: 0 additions & 3 deletions cloudmesh/common/ssh/__init__.py

This file was deleted.

16 changes: 9 additions & 7 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,13 +44,11 @@ def readfile(filename):

requiers = """
psutil
pytz
python-hostlist
simplejson
oyaml
colorama
humanize
python-dateutil
tabulate
requests
pyfiglet
Expand Down Expand Up @@ -80,11 +78,14 @@ def readfile(filename):
version=version,
license="Apache 2.0",
url=URL,
packages=find_packages(exclude=("tests",
"deprecated",
"propose",
"examples",
"conda")) + find_namespace_packages(include=['cloudmesh.*']),
packages=find_namespace_packages(
where="cloudmesh/",
exclude=("tests",
"deprecated",
"propose",
"examples",
"conda"),
include=['cloudmesh']),
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
Expand Down Expand Up @@ -123,3 +124,4 @@ def readfile(filename):
zip_safe=False,
include_package_data=True
)

0 comments on commit ee4ec0e

Please sign in to comment.