-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
40 lines (39 loc) · 1.25 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
import sys
from pathlib import Path
sys.path.insert(0, str(Path(__file__).resolve().parent))
from pywabt import __author__, __version__, __email__
from setuptools import setup
from setuptools import find_packages
from sys import version_info
setup(
name='pywabt',
version=__version__,
author=__author__,
author_email=__email__,
description='WebAssembly Binary Toolkit (WABT) for Python',
long_description=(Path(__file__).parent/'README.md').read_text('utf-8'),
long_description_content_type='text/markdown',
url='https://github.com/fabriciopashaj/pywabt',
project_urls={
'Documentation': 'https://github.com/fabriciopashaj/pywabt#readme',
'Bug Tracker': 'https://github.com/fabriciopashaj/pywabt/issues'
},
license='MIT',
license_files=['LICENSE'],
platform=['any'],
classifiers=[
"Development Status :: 5 - Production",
"Target Audience :: Developers",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent"
],
install_requires=[
"leb128"
],
package_dir={'': '.'},
packages=find_packages(where="pywabt"),
setup_requires=[
"setuptools >=46.4.0"
] if version_info >= (3,) else []
)