diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..77e4dbf --- /dev/null +++ b/.gitignore @@ -0,0 +1,4 @@ +build +dist +*.egg-info +*.pyc diff --git a/COPYING b/LICENSE similarity index 100% rename from COPYING rename to LICENSE diff --git a/pyvhd.py b/pyvhd/__init__.py similarity index 100% rename from pyvhd.py rename to pyvhd/__init__.py diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..2a6d200 --- /dev/null +++ b/setup.py @@ -0,0 +1,22 @@ +import setuptools + +with open("README.md", "r") as fh: + long_description = fh.read() + +setuptools.setup( + name="pyvhd", # Replace with your own username + version="0.0.1", + author="Ian McLeod", + author_email="imcleod@redhat.com", + description="Pure python code to create dynamic VHD files for Xen/Xenserver imports", + long_description=long_description, + long_description_content_type="text/markdown", + url="https://github.com/lungj/pyvhd", + packages=setuptools.find_packages(), + classifiers=[ + "Programming Language :: Python :: 3", + "GNU Lesser General Public License v2 or later (LGPLv2+) (LGPL 2.1)", + "Operating System :: OS Independent", + ], + python_requires='>=3.2', +) \ No newline at end of file diff --git a/tests/.keep b/tests/.keep new file mode 100644 index 0000000..e69de29