Skip to content

Commit 29ddaf4

Browse files
committed
pip works!
1 parent 88cf9b1 commit 29ddaf4

File tree

3 files changed

+11
-1
lines changed

3 files changed

+11
-1
lines changed

MANIFEST.in

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
graft ot/lp/
2+
include README.md
3+
include ot/lp/core.h
4+
include ot/lp/EMD.h
5+
include ot/lp/emd.pyx
6+
include ot/lp/full_bipartitegraph.h
7+
include ot/lp/network_simplex_simple.h

setup.cfg

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
[metadata]
2+
description-file = README.md

setup.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
import os
1616
#import glob
1717

18-
version='0.1'
18+
version='0.1.3'
1919

2020
ROOT = os.path.abspath(os.path.dirname(__file__))
2121
README = open(os.path.join(ROOT, 'README.md')).read()
@@ -35,6 +35,7 @@
3535
language="c++", # generate and compile C++ code,
3636
include_dirs=[numpy.get_include(),os.path.join(ROOT,'ot/lp')])),
3737
platforms=['linux','macosx','windows'],
38+
download_url='https://github.com/rflamary/POT/archive/V0.1.tar.gz',
3839
license = 'MIT',
3940
scripts=[],
4041
data_files=[],

0 commit comments

Comments
 (0)