mirror of
https://gitlab.com/ita1024/waf.git
synced 2024-11-22 09:57:15 +01:00
Waf Pip integration through a setup.py in root
This commit is contained in:
parent
bdb4dd90f6
commit
5877a15ece
22
setup.py
Normal file
22
setup.py
Normal file
@ -0,0 +1,22 @@
|
||||
import setuptools
|
||||
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",
|
||||
packages=['waflib', 'waflib/Tools', 'waflib/extras'],
|
||||
classifiers=[
|
||||
"Programming Language :: Python :: 3",
|
||||
"License :: OSI Approved :: MIT License",
|
||||
"Operating System :: OS Independent",
|
||||
],
|
||||
)
|
Loading…
Reference in New Issue
Block a user