-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathFable.Python.fsproj
More file actions
54 lines (51 loc) · 2.16 KB
/
Fable.Python.fsproj
File metadata and controls
54 lines (51 loc) · 2.16 KB
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
50
51
52
53
54
<?xml version="1.0" encoding="utf-8"?>
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>netstandard2.0;netstandard2.1;net6.0;net8.0;net9.0;net10.0</TargetFrameworks>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<Author>Dag Brattli</Author>
<Copyright>Dag Brattli</Copyright>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<WarnOn>3390;$(WarnOn)</WarnOn>
<PackageTags>fsharp;fable;fable-binding;fable-python;python</PackageTags>
<Description>Fable to Python standard library bindings</Description>
</PropertyGroup>
<ItemGroup>
<Compile Include="stdlib/asyncio/Futures.fs" />
<Compile Include="stdlib/asyncio/Events.fs" />
<Compile Include="stdlib/asyncio/Tasks.fs" />
<Compile Include="stdlib/Ast.fs" />
<Compile Include="stdlib/Base64.fs" />
<Compile Include="stdlib/Builtins.fs" />
<Compile Include="stdlib/Json.fs" />
<Compile Include="stdlib/Html.fs" />
<Compile Include="stdlib/Logging.fs" />
<Compile Include="stdlib/Math.fs" />
<Compile Include="stdlib/Random.fs" />
<Compile Include="stdlib/Os.fs" />
<Compile Include="stdlib/Heapq.fs" />
<Compile Include="stdlib/Queue.fs" />
<Compile Include="stdlib/String.fs" />
<Compile Include="stdlib/Sys.fs" />
<Compile Include="stdlib/Threading.fs" />
<Compile Include="stdlib/Time.fs" />
<Compile Include="stdlib/TkInter.fs" />
<Compile Include="stdlib/Traceback.fs" />
<Compile Include="cognite-sdk/CogniteSdk.fs" />
<Compile Include="flask/Flask.fs" />
<Compile Include="jupyter/IPython.fs" />
<Compile Include="jupyter/IPyWidgets.fs" />
<Compile Include="pydantic/Pydantic.fs" />
<Compile Include="fastapi/FastAPI.fs" />
<Compile Include="fable/Types.fs" />
<Compile Include="fable/Testing.fs" />
</ItemGroup>
<ItemGroup>
<Content Include="pyproject.toml; *.fsproj; **\*.fs; **\*.fsi" PackagePath="fable\" />
</ItemGroup>
<ItemGroup>
<None Include="..\LICENSE" Pack="true" Visible="false" PackagePath="\" />
<None Include="..\README.md" Pack="true" PackagePath="\" />
</ItemGroup>
<Import Project="..\.paket\Paket.Restore.targets" />
</Project>