1
0
mirror of https://github.com/RPCSX/mbuild.git synced 2025-04-07 23:22:45 +00:00
Mark Charney 52ceb3152e initial commit
Change-Id: I6fc3fd7babab231f4389689f9166e04ffba70136
2016-12-15 14:25:06 -05:00

22 lines
527 B
Python

#
# to build the distribution file:
# python setup.py sdist --formats=gztar,zip
#
# to build an installer for windows:
# python setup.py bdist_wininst
#
# to install the distribution file:
# python setup.py install
from distutils.core import setup
setup(name='mbuild',
version='0.2496',
url='https://github.com/intelxed/mbuild',
description = "mbuild: python based build system",
author = 'Mark Charney',
author_email = 'Mark.Charney@intel.com',
packages = [ 'mbuild']
)