Skip to content

Commit

Permalink
Updating for PyPi.
Browse files Browse the repository at this point in the history
  • Loading branch information
jonathan lung committed Dec 1, 2020
1 parent 907d4b7 commit d3dceaf
Show file tree
Hide file tree
Showing 5 changed files with 26 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
build
dist
*.egg-info
*.pyc
File renamed without changes.
File renamed without changes.
22 changes: 22 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -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="[email protected]",
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',
)
Empty file added tests/.keep
Empty file.

0 comments on commit d3dceaf

Please sign in to comment.