diff --git a/.gitignore b/.gitignore index 4e7a707..dfc4af0 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,4 @@ *.log -Utilities \ No newline at end of file +Utilities +*/__pycache__/ +__pycache__/ \ No newline at end of file diff --git a/sample/__init__.py b/sample/__init__.py new file mode 100644 index 0000000..2a698bf --- /dev/null +++ b/sample/__init__.py @@ -0,0 +1 @@ +import rexe diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..8e4c161 --- /dev/null +++ b/setup.py @@ -0,0 +1,17 @@ +from setuptools import setup, find_packages + +with open('README.md') as f: + readme = f.read() + +with open('LICENSE') as f: + license = f.read() + +setup(name='rexe', + version='0.1', + description=readme, + url='https://github.com/srijan-sivakumar/odinControl', + author='Srijan Sivakumar', + author_email='ssivakum@redhat.com', + license=license, + packages=['sample'], + zip_safe=False) \ No newline at end of file