forked from sebastien/extra
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
39 lines (38 loc) · 1.18 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
from setuptools import setup
from mypyc.build import mypycify
# NOTE: This is experimental
setup(
name="extra",
packages=[
"extra",
"extra.bridge",
"extra.feature",
"extra.protocol",
"extra.util",
"extra.services",
],
ext_modules=mypycify(
[
"src/py/extra/bridge/awslambda.py",
"src/py/extra/bridge/cli.py",
"src/py/extra/bridge/python.py",
"src/py/extra/bridge/aio.py",
"src/py/extra/bridge/files.py",
"src/py/extra/bridge/__init__.py",
"src/py/extra/bridge/asgi.py",
"src/py/extra/feature/cors.py",
"src/py/extra/feature/channels.py",
"src/py/extra/protocol/__init__.py",
"src/py/extra/protocol/http.py",
"src/py/extra/util/__init__.py",
"src/py/extra/util/files.py",
"src/py/extra/services/__init__.py",
"src/py/extra/services/files.py",
"src/py/extra/__init__.py",
"src/py/extra/routing.py",
"src/py/extra/decorators.py",
"src/py/extra/logging.py",
"src/py/extra/model.py",
]
),
)