-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
35 lines (32 loc) · 1.35 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
import os
from setuptools import setup, find_packages
with open(os.path.join(os.path.dirname(__file__), "README.md"), encoding="utf-8") as f:
README = f.read()
setup(name="exodide",
author="Yamada Hiroyuki",
description="build_ext for Pyodide",
long_description=README,
long_description_content_type="text/markdown",
version="1.0.4",
url="https://github.com/ymd-h/exodide",
install_requires=["well-behaved-logging"],
extras_require={"build": ["wheel"],
"inspect": ["numpy"],
"all": ["wheel", "numpy"]},
packages=find_packages(),
package_data={"exodide":
["cpython/*.h",
"cpython/cpython/*.h",
"cpython/internal/*.h",
"cpython/LICENSE",
"numpy/numpy/*.h",
"numpy/numpy/libdivide/*",
"numpy/numpy/random/*.h",
"numpy/LICENSE*"]},
classifiers=["Programming Language :: Python",
"Programming Language :: Python :: 3",
"Development Status :: 4 - Beta",
"Operating System :: OS Independent",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries"],
include_package_data=True)