forked from wasienv/wasienv
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
48 lines (41 loc) · 1.37 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
# -*- coding: utf-8 -*-
from setuptools import setup
import os
import codecs
CURRENT_DIR = os.path.dirname(__file__)
def get_long_description():
readme_md = os.path.join(CURRENT_DIR, "README.md")
with open(readme_md) as ld_file:
return ld_file.read()
setup(
name='wasienv',
description="wasienv is a C/C++ Compiler toolchain for WASI",
# long_description=get_long_description(),
long_description_content_type="text/markdown",
keywords="webassembly wasi wasienv wasmer",
author="Syrus Akbary",
author_email="[email protected]",
url="https://github.com/wasienv-core/wasienv",
version='0.4.2',
packages=['wasienv'],
include_package_data=True,
license="MIT",
zip_safe=False,
install_requires=[
"requests",
],
entry_points={'console_scripts': [
'wasiar = wasienv.commands:wasiar',
'wasienv = wasienv.commands:wasienv',
'wasicc = wasienv.commands:wasicc',
'wasic++ = wasienv.commands:wasicc',
'wasmcc = wasienv.commands:wasmcc',
'wasmc++ = wasienv.commands:wasmcc',
'wasiconfigure = wasienv.commands:wasiconfigure',
'wasild = wasienv.commands:wasild',
'wasimake = wasienv.commands:wasimake',
'wasirun = wasienv.commands:wasirun',
'wasinm = wasienv.commands:wasinm',
'wasiranlib = wasienv.commands:wasiranlib',
]},
)