-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
49 lines (44 loc) · 1.83 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
49
from setuptools import setup, find_packages
VERSION = "0.2.1"
# source env/bin/activate
# python setup.py develop
# rm -rf build dist wasmite.egg-info
# python setup.py sdist bdist_wheel
# python -m twine upload --skip-existing dist/*
# python -m twine upload dist/*
# python setup.py install
setup(
name="wasmite",
version=VERSION,
author="Yusuf Ahmed",
author_email="[email protected]",
packages=find_packages(),
description="Wasmite: Webassembly is the future but now it has a testing toolchain",
long_description=open('Readme.md').read(),
long_description_content_type="text/markdown",
install_requires=['loguru', "wasmer>=1.0.0-alpha3", "wasmer-compiler-cranelift>=1.0.0-alpha3"],
url="https://github.com/yusuf8ahmed/Wasmite",
classifiers=[
"Programming Language :: Python :: 3",
"Development Status :: 2 - Pre-Alpha",
"Operating System :: OS Independent",
"Intended Audience :: Developers",
"Topic :: Internet",
"Topic :: Internet :: WWW/HTTP :: Browsers",
"Topic :: Internet :: WWW/HTTP :: HTTP Servers",
"Topic :: Internet :: WWW/HTTP :: WSGI",
"Topic :: Internet :: WWW/HTTP :: WSGI :: Application",
"Topic :: Internet :: WWW/HTTP :: WSGI :: Middleware",
"Topic :: Internet :: WWW/HTTP :: WSGI :: Server",
"Topic :: Software Development :: Assemblers",
"Topic :: Software Development :: Testing",
"Topic :: Software Development :: Quality Assurance",
"Topic :: System :: Monitoring",
],
platforms = 'any',
keywords = ["wasmer", "wasmite", "wasp", "wasm", "debug", "debugging", "unit",
"unit testing", "unit tests", "unit testing wasm", "unit tests wasm",
"debug wasm", "debugging wasm"],
python_requires='!=3.9, !=2.*',
zip_safe = False
)