Adding a setup.py (this looks like a real project now :D)

This commit is contained in:
Clement Rouault
2016-01-07 20:16:44 +01:00
parent 8e706fa4d2
commit a4e61c74e5
+19
View File
@@ -0,0 +1,19 @@
from setuptools import setup
# -*- coding: utf-8 -*-
PKG_NAME = "PythonForWindows"
VERSION = "0.1"
setup(
name = PKG_NAME,
version = VERSION,
author = 'Hakril',
author_email = 'none',
description = 'Python wrapper around parts of Windows',
license = 'BSD',
keywords = 'windows python',
url = '',
py_modules= ['windows'],
packages = ['windows'],
)