-
Notifications
You must be signed in to change notification settings - Fork 17
/
pathpy.pyproj
76 lines (76 loc) · 3.19 KB
/
pathpy.pyproj
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<SchemaVersion>2.0</SchemaVersion>
<ProjectGuid>{896991fc-0289-4bae-b680-88e19508c91f}</ProjectGuid>
<ProjectHome />
<StartupFile>
</StartupFile>
<SearchPath />
<WorkingDirectory>.</WorkingDirectory>
<OutputPath>.</OutputPath>
<InterpreterId>
</InterpreterId>
<InterpreterVersion>
</InterpreterVersion>
<VisualStudioVersion Condition="'$(VisualStudioVersion)' == ''">10.0</VisualStudioVersion>
<VSToolsPath Condition="'$(VSToolsPath)' == ''">$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)</VSToolsPath>
<Name>pathpy</Name>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)' == 'Debug'" />
<PropertyGroup Condition="'$(Configuration)' == 'Release'" />
<PropertyGroup>
<PtvsTargetsFile>$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)\Python Tools\Microsoft.PythonTools.targets</PtvsTargetsFile>
</PropertyGroup>
<ItemGroup>
<Compile Include="pathpy\DAG.py">
<SubType>Code</SubType>
</Compile>
<Compile Include="pathpy\MarkovSequence.py">
<SubType>Code</SubType>
</Compile>
<Compile Include="pathpy\MultiOrderModel.py">
<SubType>Code</SubType>
</Compile>
<Compile Include="pathpy\HigherOrderNetwork.py">
<SubType>Code</SubType>
</Compile>
<Compile Include="pathpy\Log.py">
<SubType>Code</SubType>
</Compile>
<Compile Include="pathpy\Paths.py">
<SubType>Code</SubType>
</Compile>
<Compile Include="setup.py" />
<Compile Include="pathpy\TemporalNetwork.py" />
<Compile Include="pathpy\__init__.py" />
<Compile Include="tests\conftest.py" />
<Compile Include="tests\test_estimation.py" />
<Compile Include="tests\test_Path.py" />
<Compile Include="tests\test_TemporalNetwork.py" />
</ItemGroup>
<ItemGroup>
<Folder Include="pathpy\" />
<Folder Include="tests\" />
<Folder Include="tests\test_data\" />
<Folder Include="tests\__pycache__\" />
</ItemGroup>
<ItemGroup>
<Content Include=".gitignore" />
<Content Include="DESCRIPTION.rst" />
<Content Include="LICENSE.txt" />
<Content Include="README.md" />
<Content Include="tests\README.md" />
<Content Include="tests\test_data\edge_frequency.edge" />
<Content Include="tests\test_data\example_int.tedges" />
<Content Include="tests\test_data\example_timestamp.tedges" />
<Content Include="tests\test_data\ngram_simple.ngram" />
<Content Include="tests\__pycache__\conftest.cpython-35-PYTEST.pyc" />
<Content Include="tests\__pycache__\test_estimation.cpython-35-PYTEST.pyc" />
<Content Include="tests\__pycache__\test_Path.cpython-35-PYTEST.pyc" />
<Content Include="tests\__pycache__\test_TemporalNetwork.cpython-35-PYTEST.pyc" />
</ItemGroup>
<Import Project="$(PtvsTargetsFile)" Condition="Exists($(PtvsTargetsFile))" />
<Import Project="$(MSBuildToolsPath)\Microsoft.Common.targets" Condition="!Exists($(PtvsTargetsFile))" />
</Project>