waf

FORK: waf with some random patches
git clone https://git.neptards.moe/neptards/waf.git
Log | Files | Refs | README

setup.py (690B)


      1 import setuptools
      2 import sys
      3 sys.path.insert(0,'..')
      4 import waflib.Context
      5 
      6 with open("../README.md", "r") as fh:
      7     long_description = fh.read()
      8 
      9 setuptools.setup(
     10     name="waf",
     11     version=waflib.Context.WAFVERSION,
     12     author="Thomas Nagy",
     13     author_email="author@example.com",
     14     description="Build Framework",
     15     long_description=long_description,
     16     long_description_content_type="text/markdown",
     17     url="https://gitlab.com/ita1024/waf",
     18     package_dir={'': '../'},
     19     packages=['waflib', 'waflib/Tools', 'waflib/extras'],
     20     scripts=['../waf-light'],
     21     classifiers=[
     22         "Programming Language :: Python :: 3",
     23         "Operating System :: OS Independent",
     24     ],
     25 )