mirror of
https://github.com/RPCSX/mbuild.git
synced 2025-04-07 23:22:45 +00:00
22 lines
527 B
Python
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']
|
|
)
|
|
|