2019-02-13 09:49:06 +01:00
|
|
|
import setuptools
|
2019-06-26 15:51:48 +02:00
|
|
|
import sys
|
|
|
|
sys.path.insert(0,'..')
|
2019-02-13 09:49:06 +01:00
|
|
|
import waflib.Context
|
|
|
|
|
2019-06-26 15:51:48 +02:00
|
|
|
with open("../README.md", "r") as fh:
|
2019-02-13 09:49:06 +01:00
|
|
|
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",
|
2019-06-26 15:51:48 +02:00
|
|
|
package_dir={'': '../'},
|
2019-02-13 09:49:06 +01:00
|
|
|
packages=['waflib', 'waflib/Tools', 'waflib/extras'],
|
2019-06-26 15:51:48 +02:00
|
|
|
scripts=['../waf-light'],
|
2019-02-13 09:49:06 +01:00
|
|
|
classifiers=[
|
|
|
|
"Programming Language :: Python :: 3",
|
|
|
|
"Operating System :: OS Independent",
|
|
|
|
],
|
|
|
|
)
|