2
0
mirror of https://gitlab.com/ita1024/waf.git synced 2024-11-22 01:46:15 +01:00
waf/utils/setup.py
2019-06-26 16:13:55 +02:00

26 lines
690 B
Python

import setuptools
import sys
sys.path.insert(0,'..')
import waflib.Context
with open("../README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="waf",
version=waflib.Context.WAFVERSION,
author="Thomas Nagy",
author_email="author@example.com",
description="Build Framework",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://gitlab.com/ita1024/waf",
package_dir={'': '../'},
packages=['waflib', 'waflib/Tools', 'waflib/extras'],
scripts=['../waf-light'],
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
],
)